Package org.geotools.jdbc
Class Index
- Object
-
- Index
-
public class Index extends Object
Represents a database index- Author:
- Andrea Aime - GeoSolutions
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
List<String>
getAttributes()
An un-modifiable list of the attributes in the indexHints
getHints()
Retrieves the hints for this index.String
getIndexName()
The index nameString
getTypeName()
The feature type owning this indexint
hashCode()
boolean
isUnique()
True if the index is a unique one, false otherwiseString
toString()
-
-
-
Method Detail
-
isUnique
public boolean isUnique()
True if the index is a unique one, false otherwise
-
getAttributes
public List<String> getAttributes()
An un-modifiable list of the attributes in the index
-
getTypeName
public String getTypeName()
The feature type owning this index
-
getIndexName
public String getIndexName()
The index name
-
getHints
public Hints getHints()
Retrieves the hints for this index.
-
-