com.google.api.client.testing.json
Enum AbstractJsonParserTest.E
java.lang.Object
java.lang.Enum<AbstractJsonParserTest.E>
com.google.api.client.testing.json.AbstractJsonParserTest.E
- All Implemented Interfaces:
- Serializable, Comparable<AbstractJsonParserTest.E>
- Enclosing class:
- AbstractJsonParserTest
public static enum AbstractJsonParserTest.E
- extends Enum<AbstractJsonParserTest.E>
VALUE
public static final AbstractJsonParserTest.E VALUE
OTHER_VALUE
public static final AbstractJsonParserTest.E OTHER_VALUE
NULL
public static final AbstractJsonParserTest.E NULL
IGNORED_VALUE
public static final AbstractJsonParserTest.E IGNORED_VALUE
values
public static AbstractJsonParserTest.E[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AbstractJsonParserTest.E c : AbstractJsonParserTest.E.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AbstractJsonParserTest.E valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2011 Google. All Rights Reserved.