|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.postgresql.util.PGobject
org.postgresql.geometric.PGpath
public class PGpath
This implements a path (a multiple segmented line, which may be closed)
| Field Summary | |
|---|---|
boolean |
open
True if the path is open, false if closed |
PGpoint[] |
points
The points defining this path |
| Fields inherited from class org.postgresql.util.PGobject |
|---|
type, value |
| Constructor Summary | |
|---|---|
PGpath()
Required by the driver |
|
PGpath(PGpoint[] points,
boolean open)
|
|
PGpath(java.lang.String s)
|
|
| Method Summary | |
|---|---|
java.lang.Object |
clone()
This must be overidden to allow the object to be cloned |
void |
closePath()
|
boolean |
equals(java.lang.Object obj)
This must be overidden to allow comparisons of objects |
java.lang.String |
getValue()
This returns the path in the syntax expected by org.postgresql |
int |
hashCode()
Compute hash. |
boolean |
isClosed()
|
boolean |
isOpen()
|
void |
openPath()
|
void |
setValue(java.lang.String s)
This method sets the value of this object. |
| Methods inherited from class org.postgresql.util.PGobject |
|---|
getType, setType, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public boolean open
public PGpoint[] points
| Constructor Detail |
|---|
public PGpath(PGpoint[] points,
boolean open)
points - the PGpoints that define the pathopen - True if the path is open, false if closedpublic PGpath()
public PGpath(java.lang.String s)
throws java.sql.SQLException
s - definition of the path in PostgreSQL's syntax.
java.sql.SQLException - on conversion failure| Method Detail |
|---|
public void setValue(java.lang.String s)
throws java.sql.SQLException
PGobject
setValue in class PGobjects - Definition of the path in PostgreSQL's syntax
java.sql.SQLException - on conversion failurepublic boolean equals(java.lang.Object obj)
PGobject
equals in class PGobjectobj - Object to compare with
public int hashCode()
PGobject
hashCode in class PGobjectjava.util.Objects#hashCode(Object)
public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
PGobject
clone in class PGobjectjava.lang.CloneNotSupportedExceptionpublic java.lang.String getValue()
getValue in class PGobjectpublic boolean isOpen()
public boolean isClosed()
public void closePath()
public void openPath()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||