Class ArrayType
- java.lang.Object
-
- com.snowflake.snowpark_java.types.DataType
-
- com.snowflake.snowpark_java.types.ArrayType
-
- All Implemented Interfaces:
Serializable
public class ArrayType extends DataType
Array data type. This maps to ARRAY data type in Snowflake.- Since:
- 0.9.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)Verifies if a DataType equals to this one.DataTypegetElementType()Retrieves the type of this array's element.inthashCode()Calculates the hash code of this Array Type Object.StringtoString()Generates a String value to represent this array type.
-
-
-
Method Detail
-
getElementType
public DataType getElementType()
Retrieves the type of this array's element.- Returns:
- A DataType object representing the element type of this array.
- Since:
- 0.9.0
-
toString
public String toString()
Generates a String value to represent this array type.
-
equals
public boolean equals(Object other)
Verifies if a DataType equals to this one.
-
-