public enum FetchHint extends Enum<FetchHint>
| Enum Constant and Description |
|---|
IN_EDGE_LABELS |
IN_EDGE_REFS |
INCLUDE_HIDDEN |
OUT_EDGE_LABELS |
OUT_EDGE_REFS |
PROPERTIES |
PROPERTY_METADATA |
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<FetchHint> |
ALL |
static EnumSet<FetchHint> |
ALL_INCLUDING_HIDDEN |
static EnumSet<FetchHint> |
EDGE_LABELS |
static EnumSet<FetchHint> |
EDGE_REFS |
static EnumSet<FetchHint> |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<FetchHint> |
create(List<FetchHint> results) |
static EnumSet<FetchHint> |
parse(String fetchHintsString) |
static String |
toString(EnumSet<FetchHint> fetchHints) |
static FetchHint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FetchHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FetchHint PROPERTIES
public static final FetchHint PROPERTY_METADATA
public static final FetchHint IN_EDGE_REFS
public static final FetchHint OUT_EDGE_REFS
public static final FetchHint INCLUDE_HIDDEN
public static final FetchHint IN_EDGE_LABELS
public static final FetchHint OUT_EDGE_LABELS
public static FetchHint[] values()
for (FetchHint c : FetchHint.values()) System.out.println(c);
public static FetchHint 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 nullCopyright © 2014–2017. All rights reserved.