Enum Class LcAutoAdjustEnum

java.lang.Object
java.lang.Enum<LcAutoAdjustEnum>
net.finmath.smartcontract.product.xml.LcAutoAdjustEnum
All Implemented Interfaces:
Serializable, Comparable<LcAutoAdjustEnum>, Constable

public enum LcAutoAdjustEnum extends Enum<LcAutoAdjustEnum>

Java class for LcAutoAdjustEnum.

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

 <simpleType name="LcAutoAdjustEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="AutoDecrease"/>
     <enumeration value="AutoIncrease"/>
     <enumeration value="AutoIncreaseOrDecrease"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • AUTO_DECREASE

      public static final LcAutoAdjustEnum AUTO_DECREASE
      Denotes an automatic decrease.
    • AUTO_INCREASE

      public static final LcAutoAdjustEnum AUTO_INCREASE
      Denotes an automatic increase.
    • AUTO_INCREASE_OR_DECREASE

      public static final LcAutoAdjustEnum AUTO_INCREASE_OR_DECREASE
      Denotes an automatic increase or decrease.
  • Method Details

    • values

      public static LcAutoAdjustEnum[] 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 LcAutoAdjustEnum 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()
    • fromValue

      public static LcAutoAdjustEnum fromValue(String v)