Enum IdentifierType

    • Enum Constant Detail

      • VERTEX

        public static final IdentifierType VERTEX
        The vertex associated with an Entity.
      • SOURCE

        public static final IdentifierType SOURCE
        An Edge's source vertex
      • DESTINATION

        public static final IdentifierType DESTINATION
        An Edge's destination vertex
      • DIRECTED

        public static final IdentifierType DIRECTED
        An Edge's directed flag
      • MATCHED_VERTEX

        public static final IdentifierType MATCHED_VERTEX
        An Edge's matched vertex (defaults to SOURCE).
      • ADJACENT_MATCHED_VERTEX

        public static final IdentifierType ADJACENT_MATCHED_VERTEX
        The vertex adjacent to Edge's matched vertex (defaults to DESTINATION).
    • Method Detail

      • values

        public static IdentifierType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (IdentifierType c : IdentifierType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static IdentifierType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null