Package org.apache.calcite.linq4j.tree
Class Types.MapType
- java.lang.Object
-
- org.apache.calcite.linq4j.tree.Types.MapType
-
-
Field Summary
Fields Modifier and Type Field Description private booleankeyIsNullableprivate TypekeyTypeprivate booleanvalueIsNullableprivate TypevalueType
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypegetKeyType()Returns the type of keys.TypegetValueType()Returns the type of values.booleankeyIsNullable()Returns whether keys may be null.booleanvalueIsNullable()Returns whether values may be null.-
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
-
-
-
-
Method Detail
-
getKeyType
public Type getKeyType()
Returns the type of keys.
-
keyIsNullable
public boolean keyIsNullable()
Returns whether keys may be null.
-
getValueType
public Type getValueType()
Returns the type of values.
-
valueIsNullable
public boolean valueIsNullable()
Returns whether values may be null.
-
-