Package com.mapr.fs.tables
Interface ExtIndexFieldDesc
-
- All Known Implementing Classes:
ExtIndexFieldDescImpl
public interface ExtIndexFieldDesc
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classExtIndexFieldDesc.Order
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFieldName()Returns the canonical field name of this field descriptor.java.lang.StringgetIndexFunction()Returns functional indexing function represented by string, null if no functionExtIndexFieldDesc.OrdergetSortOrder()Returns the ordering scheme of this field in the Index.booleanisFunctional()Returntrueif this is a functional index field.booleanisUpdateTimestamp()Returntrueif this is an update timestamp field.
-
-
-
Method Detail
-
getFieldName
java.lang.String getFieldName()
Returns the canonical field name of this field descriptor.
-
getSortOrder
ExtIndexFieldDesc.Order getSortOrder()
Returns the ordering scheme of this field in the Index.
-
isFunctional
boolean isFunctional()
Returntrueif this is a functional index field.
-
isUpdateTimestamp
boolean isUpdateTimestamp()
Returntrueif this is an update timestamp field.
-
getIndexFunction
java.lang.String getIndexFunction()
Returns functional indexing function represented by string, null if no function
-
-