Enum T
- java.lang.Object
- 
- java.lang.Enum<T>
- 
- org.apache.tinkerpop.gremlin.structure.T
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<T>,- Function<Element,Object>
 
 public enum T extends Enum<T> implements Function<Element,Object> A collection of (T)okens which allows for more concise Traversal definitions. T implementsFunctioncan be used to map an element to its token value. For example,T.id.apply(element).- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Objectapply(Element element)static TfromString(String accessor)abstract StringgetAccessor()static TvalueOf(String name)Returns the enum constant of this type with the specified name.static T[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
labelpublic static final T label Label (representing Element.label())- Since:
- 3.0.0-incubating
 
 - 
idpublic static final T id Id (representing Element.id())- Since:
- 3.0.0-incubating
 
 - 
keypublic static final T key Key (representing Property.key())- Since:
- 3.0.0-incubating
 
 - 
valuepublic static final T value Value (representing Property.value())- Since:
- 3.0.0-incubating
 
 
- 
 - 
Method Detail- 
valuespublic static T[] 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 (T c : T.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static T 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
 
 - 
getAccessorpublic abstract String getAccessor() 
 
- 
 
-