Package org.apache.calcite.linq4j.tree
Class Types.ArrayType
- java.lang.Object
-
- org.apache.calcite.linq4j.tree.Types.ArrayType
-
-
Field Summary
Fields Modifier and Type Field Description private booleancomponentIsNullableprivate TypecomponentTypeprivate longmaximumCardinality
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancomponentIsNullable()Returns whether elements in the array may be null.TypegetComponentType()Returns the type of elements in the array.longmaximumCardinality()Returns the maximum cardinality; -1 if there is no maximum.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.reflect.Type
getTypeName
-
-
-
-
Field Detail
-
componentType
private final Type componentType
-
componentIsNullable
private final boolean componentIsNullable
-
maximumCardinality
private final long maximumCardinality
-
-
Method Detail
-
getComponentType
public Type getComponentType()
Returns the type of elements in the array.
-
componentIsNullable
public boolean componentIsNullable()
Returns whether elements in the array may be null.
-
maximumCardinality
public long maximumCardinality()
Returns the maximum cardinality; -1 if there is no maximum.
-
-