Enum Jsoner.States

java.lang.Object
java.lang.Enum<Jsoner.States>
org.json.simple.Jsoner.States
All Implemented Interfaces:
Serializable, Comparable<Jsoner.States>, java.lang.constant.Constable
Enclosing class:
Jsoner

private static enum Jsoner.States extends Enum<Jsoner.States>
The possible States of a JSON deserializer.
  • Enum Constant Details

    • DONE

      public static final Jsoner.States DONE
      Post-parsing state.
    • INITIAL

      public static final Jsoner.States INITIAL
      Pre-parsing state.
    • PARSED_ERROR

      public static final Jsoner.States PARSED_ERROR
      Parsing error, ParsingException should be thrown.
    • PARSING_ARRAY

      public static final Jsoner.States PARSING_ARRAY
    • PARSING_ENTRY

      public static final Jsoner.States PARSING_ENTRY
      Parsing a key-value pair inside of an object.
    • PARSING_OBJECT

      public static final Jsoner.States PARSING_OBJECT
  • Constructor Details

    • States

      private States()
  • Method Details

    • values

      public static Jsoner.States[] 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

      public static Jsoner.States 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