Enum DecimalEnum

java.lang.Object
java.lang.Enum<DecimalEnum>
org.apache.type_test.types1.DecimalEnum
All Implemented Interfaces:
Serializable, Comparable<DecimalEnum>, java.lang.constant.Constable

@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v3.0.2", date="2023-06-06T12:44:56-04:00") public enum DecimalEnum extends Enum<DecimalEnum>

Java class for DecimalEnum.

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

 <simpleType name="DecimalEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
     <enumeration value="-10.34"/>
     <enumeration value="11.22"/>
     <enumeration value="14.55"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

  • Method Details

    • values

      public static DecimalEnum[] 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 DecimalEnum 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
    • value

      public BigDecimal value()
    • fromValue

      public static DecimalEnum fromValue(BigDecimal v)