public enum TupleSlot extends Enum<TupleSlot>
Modifier and Type | Method and Description |
---|---|
static TupleSlot |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TupleSlot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TupleSlot GRAPH
public static final TupleSlot SUBJECT
public static final TupleSlot PREDICATE
public static final TupleSlot OBJECT
public static TupleSlot[] values()
for (TupleSlot c : TupleSlot.values()) System.out.println(c);
public static TupleSlot valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullLicenced under the Apache License, Version 2.0