java.io.Serializable, java.lang.Comparable<ValueObject.Reference>, java.lang.constant.Constablepublic static enum ValueObject.Reference extends java.lang.Enum<ValueObject.Reference>
| Enum Constant | Description | 
|---|---|
| LOCAL | |
| UNSPECIFIED | |
| VALUE | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static ValueObject.Reference | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static ValueObject.Reference[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ValueObject.Reference UNSPECIFIED
public static final ValueObject.Reference LOCAL
public static final ValueObject.Reference VALUE
public static ValueObject.Reference[] values()
for (ValueObject.Reference c : ValueObject.Reference.values()) System.out.println(c);
public static ValueObject.Reference valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null