Package org.postgresql.geometric
Class PGline
- java.lang.Object
-
- org.postgresql.util.PGobject
-
- org.postgresql.geometric.PGline
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class PGline extends PGobject implements Serializable, Cloneable
This implements a line represented by the linear equation Ax + By + C = 0.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
This must be overidden to allow the object to be cloned.boolean
equals(Object obj)
This must be overidden to allow comparisons of objects.String
getValue()
This must be overidden, to return the value of the object, in the form required by org.postgresql.int
hashCode()
Compute hash.void
setValue(String s)
This method sets the value of this object.
-
-
-
Constructor Detail
-
PGline
public PGline(double a, double b, double c)
- Parameters:
a
- coefficient of xb
- coefficient of yc
- constant
-
PGline
public PGline(double x1, double y1, double x2, double y2)
- Parameters:
x1
- coordinate for first point on the liney1
- coordinate for first point on the linex2
- coordinate for second point on the liney2
- coordinate for second point on the line
-
PGline
public PGline(PGpoint p1, PGpoint p2)
- Parameters:
p1
- first point on the linep2
- second point on the line
-
PGline
public PGline(PGlseg lseg)
- Parameters:
lseg
- Line segment which calls on this line.
-
PGline
public PGline(String s) throws SQLException
- Parameters:
s
- definition of the line in PostgreSQL's syntax.- Throws:
SQLException
- on conversion failure
-
PGline
public PGline()
required by the driver.
-
-
Method Detail
-
setValue
public void setValue(String s) throws SQLException
Description copied from class:PGobject
This method sets the value of this object. It must be overridden.- Overrides:
setValue
in classPGobject
- Parameters:
s
- Definition of the line in PostgreSQL's syntax- Throws:
SQLException
- on conversion failure
-
equals
public boolean equals(Object obj)
Description copied from class:PGobject
This must be overidden to allow comparisons of objects.
-
hashCode
public int hashCode()
Description copied from class:PGobject
Compute hash. As equals() use only value. Return the same hash for the same value.- Overrides:
hashCode
in classPGobject
- Returns:
- Value hashcode, 0 if value is null
Objects.hashCode(Object)
-
getValue
public String getValue()
Description copied from class:PGobject
This must be overidden, to return the value of the object, in the form required by org.postgresql.
-
clone
public Object clone() throws CloneNotSupportedException
Description copied from class:PGobject
This must be overidden to allow the object to be cloned.- Overrides:
clone
in classPGobject
- Throws:
CloneNotSupportedException
-
-