Class Types.MapType

java.lang.Object
org.apache.calcite.linq4j.tree.Types.MapType
All Implemented Interfaces:
Type
Enclosing class:
Types

public static class Types.MapType extends Object implements Type
Map type.
  • Constructor Details

    • MapType

      public MapType(Type keyType, boolean keyIsNullable, Type valueType, boolean valueIsNullable)
  • Method Details

    • 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.