java.lang.Object
java.lang.Enum<State>
ch.tocco.nice2.optional.ebill.impl.webservice.postfinance.soap.State
All Implemented Interfaces:
Serializable, Comparable<State>, Constable

public enum State extends Enum<State>

Java class for State

.

The following schema fragment specifies the expected content contained within this class.


 <simpleType name="State">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Open"/>
     <enumeration value="Paid"/>
     <enumeration value="Rejected"/>
     <enumeration value="Processing"/>
     <enumeration value="Incomplete"/>
     <enumeration value="Invalid"/>
     <enumeration value="Deleted"/>
     <enumeration value="Unsigned"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • OPEN

      public static final State OPEN
    • REJECTED

      public static final State REJECTED
    • PROCESSING

      public static final State PROCESSING
    • INCOMPLETE

      public static final State INCOMPLETE
    • INVALID

      public static final State INVALID
    • DELETED

      public static final State DELETED
    • UNSIGNED

      public static final State UNSIGNED
  • Method Details

    • values

      public static State[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static State valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Gets the value associated to the enum constant.
      Returns:
      The value linked to the enum.
    • fromValue

      public static State fromValue(String v)
      Gets the enum associated to the value passed as parameter.
      Parameters:
      v - The value to get the enum from.
      Returns:
      The enum which corresponds to the value, if it exists.
      Throws:
      IllegalArgumentException - If no value matches in the enum declaration.