Package org.json.simple
Enum Jsoner.States
- All Implemented Interfaces:
Serializable,Comparable<Jsoner.States>,java.lang.constant.Constable
- Enclosing class:
Jsoner
The possible States of a JSON deserializer.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPost-parsing state.Pre-parsing state.Parsing error, ParsingException should be thrown.Parsing a key-value pair inside of an object. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Jsoner.StatesReturns the enum constant of this type with the specified name.static Jsoner.States[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DONE
Post-parsing state. -
INITIAL
Pre-parsing state. -
PARSED_ERROR
Parsing error, ParsingException should be thrown. -
PARSING_ARRAY
-
PARSING_ENTRY
Parsing a key-value pair inside of an object. -
PARSING_OBJECT
-
-
Constructor Details
-
States
private States()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-