パッケージ org.postgresql.geometric
クラス PGpath
java.lang.Object
org.postgresql.util.PGobject
org.postgresql.geometric.PGpath
- すべての実装されたインタフェース:
Serializable
,Cloneable
This implements a path (a multiple segmented line, which may be closed).
- 関連項目:
-
フィールドの概要
フィールド修飾子とタイプフィールド説明boolean
True if the path is open, false if closed.PGpoint @Nullable []
The points defining this path. -
コンストラクタの概要
コンストラクタ -
メソッドの概要
修飾子とタイプメソッド説明clone()
This must be overridden to allow the object to be cloned.void
boolean
This must be overridden to allow comparisons of objects.@Nullable String
getValue()
This returns the path in the syntax expected by org.postgresql.int
hashCode()
Compute hash.boolean
isClosed()
boolean
isOpen()
void
openPath()
void
This method sets the value of this object.
-
フィールド詳細
-
open
public boolean openTrue if the path is open, false if closed. -
points
The points defining this path.
-
-
コンストラクタの詳細
-
PGpath
- パラメータ:
points
- the PGpoints that define the pathopen
- True if the path is open, false if closed
-
PGpath
public PGpath()Required by the driver. -
PGpath
- パラメータ:
s
- definition of the path in PostgreSQL's syntax.- 例外:
SQLException
- on conversion failure
-
-
メソッドの詳細
-
setValue
クラスからコピーされた説明:PGobject
This method sets the value of this object. It must be overridden.- オーバーライド:
setValue
クラス内PGobject
- パラメータ:
s
- Definition of the path in PostgreSQL's syntax- 例外:
SQLException
- on conversion failure
-
equals
クラスからコピーされた説明:PGobject
This must be overridden to allow comparisons of objects. -
hashCode
public int hashCode()クラスからコピーされた説明:PGobject
Compute hash. As equals() use only value. Return the same hash for the same value.- オーバーライド:
hashCode
クラス内PGobject
- 戻り値:
- Value hashcode, 0 if value is null
Objects.hashCode(Object)
-
clone
クラスからコピーされた説明:PGobject
This must be overridden to allow the object to be cloned.- オーバーライド:
clone
クラス内PGobject
- 例外:
CloneNotSupportedException
-
getValue
This returns the path in the syntax expected by org.postgresql. -
isOpen
public boolean isOpen() -
isClosed
public boolean isClosed() -
closePath
public void closePath() -
openPath
public void openPath()
-