org.locationtech.geomesa.kudu.schema
KuduSimpleFeatureSchema
Companion object KuduSimpleFeatureSchema
class KuduSimpleFeatureSchema extends AnyRef
Handles conversions between Kudu table columns and simple feature attributes.
Note: does not handle feature ID, as this is generally part of the row primary key and handled by the individual index implementation
- Alphabetic
- By Inheritance
- KuduSimpleFeatureSchema
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val adapters: IndexedSeq[KuduColumnAdapter[AnyRef]]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
predicate(filter: Filter): KuduFilter
Create push-down predicates from an ECQL filter
Create push-down predicates from an ECQL filter
- filter
filter
-
def
schema(attributes: Seq[String]): Seq[ColumnSchema]
Columns for a subset of attributes.
Columns for a subset of attributes. An attribute may be encoded as multiple columns
- attributes
simple feature attributes
-
val
schema: Seq[ColumnSchema]
Columns for the simple feature type.
Columns for the simple feature type. Does not include primary key columns for the index (including the feature ID column). Note that attributes may be encoded as multiple columns
-
def
serialize(feature: SimpleFeature): Seq[KuduValue[_]]
Convert a simple feature into a series of column values
Convert a simple feature into a series of column values
- feature
simple feature
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
val
writeSchema: Seq[ColumnSchema]
Write columns for the simple feature type.
Write columns for the simple feature type. Includes all the columns in
schema, plus any additional columns that are used for push-down predicates, but not actually returned from queries.