Package apoc.meta

Enum Class Types

All Implemented Interfaces:
Serializable, Comparable<Types>, Constable

public enum Types extends Enum<Types>
  • Enum Constant Details

    • INTEGER

      public static final Types INTEGER
    • FLOAT

      public static final Types FLOAT
    • STRING

      public static final Types STRING
    • BOOLEAN

      public static final Types BOOLEAN
    • RELATIONSHIP

      public static final Types RELATIONSHIP
    • NODE

      public static final Types NODE
    • PATH

      public static final Types PATH
    • NULL

      public static final Types NULL
    • ANY

      public static final Types ANY
    • MAP

      public static final Types MAP
    • LIST

      public static final Types LIST
    • POINT

      public static final Types POINT
    • DATE

      public static final Types DATE
    • DATE_TIME

      public static final Types DATE_TIME
    • LOCAL_TIME

      public static final Types LOCAL_TIME
    • LOCAL_DATE_TIME

      public static final Types LOCAL_DATE_TIME
    • TIME

      public static final Types TIME
    • DURATION

      public static final Types DURATION
  • Method Details

    • values

      public static Types[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Types valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Types>
    • of

      public static Types of(Object value)
    • toObjectArray

      public static Object[] toObjectArray(Object value)
    • of

      public static Types of(Class<?> type)
    • from

      public static Types from(String typeName)
    • inferType

      public static String inferType(List<?> list)