Class ArrayItemType

java.lang.Object
org.rumbledb.types.ArrayItemType
All Implemented Interfaces:
com.esotericsoftware.kryo.KryoSerializable, Serializable, ItemType

public class ArrayItemType extends Object implements ItemType, com.esotericsoftware.kryo.KryoSerializable
See Also:
  • Method Details

    • arrayOf

      public static ItemType arrayOf(ItemType itemType)
    • equals

      public boolean equals(Object other)
      Description copied from interface: ItemType
      Tests for itemType equality.
      Specified by:
      equals in interface ItemType
      Overrides:
      equals in class Object
      Parameters:
      other - another object.
      Returns:
      true it is equal to other, false otherwise.
    • isArrayItemType

      public boolean isArrayItemType()
      Specified by:
      isArrayItemType in interface ItemType
      Returns:
      true it [this] is an array item type.
    • hasName

      public boolean hasName()
      Description copied from interface: ItemType
      Tests for QName.
      Specified by:
      hasName in interface ItemType
      Returns:
      true if [this] item type has a QName
    • getName

      public Name getName()
      Specified by:
      getName in interface ItemType
      Returns:
      the itemtype QName if available
    • getTypeTreeDepth

      public int getTypeTreeDepth()
      Specified by:
      getTypeTreeDepth in interface ItemType
      Returns:
      an int representing the depth of the item type in the type tree ('item' is the root with depth 0)
    • isUserDefined

      public boolean isUserDefined()
      Specified by:
      isUserDefined in interface ItemType
      Returns:
      [true] if it is a user-defined type, false otherwise
    • isPrimitive

      public boolean isPrimitive()
      Specified by:
      isPrimitive in interface ItemType
      Returns:
      [true] if it is a primitive type
    • getPrimitiveType

      public ItemType getPrimitiveType()
      Specified by:
      getPrimitiveType in interface ItemType
      Returns:
      the primitive type for a derived type, throw an error for primitive types
    • getBaseType

      public ItemType getBaseType()
      Specified by:
      getBaseType in interface ItemType
      Returns:
      the base type for a type, return null for the topmost item type
    • getAllowedFacets

      public Set<FacetTypes> getAllowedFacets()
      Specified by:
      getAllowedFacets in interface ItemType
      Returns:
      a set containing the allowed facets for restricting the type
    • getEnumerationFacet

      public List<Item> getEnumerationFacet()
      Specified by:
      getEnumerationFacet in interface ItemType
      Returns:
      the list of possible values for [this] item type or null if the enumeration facet is not set
    • getMinLengthFacet

      public Integer getMinLengthFacet()
      Specified by:
      getMinLengthFacet in interface ItemType
      Returns:
      the minimum length facet value for [this] item type or null if the restriction is not set
    • getMaxLengthFacet

      public Integer getMaxLengthFacet()
      Specified by:
      getMaxLengthFacet in interface ItemType
      Returns:
      the maximum length facet value for [this] item type or null if the restriction is not set
    • getArrayContentFacet

      public ItemType getArrayContentFacet()
      Specified by:
      getArrayContentFacet in interface ItemType
      Returns:
      content facet value for array item types
    • getIdentifierString

      public String getIdentifierString()
      Specified by:
      getIdentifierString in interface ItemType
      Returns:
      a String that uniquely identify an item type
    • toString

      public String toString()
      Specified by:
      toString in interface ItemType
      Overrides:
      toString in class Object
    • processBaseType

      public void processBaseType()
    • resolve

      public void resolve(DynamicContext context, ExceptionMetadata metadata)
      Specified by:
      resolve in interface ItemType
    • resolve

      public void resolve(StaticContext context, ExceptionMetadata metadata)
      Specified by:
      resolve in interface ItemType
    • isResolved

      public boolean isResolved()
      Specified by:
      isResolved in interface ItemType
    • checkSubtypeConsistency

      public void checkSubtypeConsistency()
    • isCompatibleWithDataFrames

      public boolean isCompatibleWithDataFrames(RumbleRuntimeConfiguration configuration)
      Description copied from interface: ItemType
      Checks compatibility with DataFrames.
      Specified by:
      isCompatibleWithDataFrames in interface ItemType
      Returns:
      true if compatible with DataFrames and false otherwise.
    • getSparkSQLType

      public String getSparkSQLType()
      Description copied from interface: ItemType
      Returns the SparkSQL type of the item type for use in a query.
      Specified by:
      getSparkSQLType in interface ItemType
      Returns:
      String representing the SparkSQL type of the item type.
    • write

      public void write(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Output output)
      Specified by:
      write in interface com.esotericsoftware.kryo.KryoSerializable
    • read

      public void read(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Input input)
      Specified by:
      read in interface com.esotericsoftware.kryo.KryoSerializable