public enum ProtoFlavor extends Enum<ProtoFlavor>
| Enum Constant and Description |
|---|
PROTO2 |
| Modifier and Type | Method and Description |
|---|---|
static ProtoFlavor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProtoFlavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtoFlavor PROTO2
public static ProtoFlavor[] values()
for (ProtoFlavor c : ProtoFlavor.values()) System.out.println(c);
public static ProtoFlavor 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 null