public static enum Record.IoType extends java.lang.Enum<Record.IoType>
| Modifier and Type | Method and Description |
|---|---|
static Record.IoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Record.IoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Input") public static final Record.IoType INPUT
@SerializedName(value="Output") public static final Record.IoType OUTPUT
public static Record.IoType[] values()
for (Record.IoType c : Record.IoType.values()) System.out.println(c);
public static Record.IoType 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