Enum Class RepoDurationEnum

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

public enum RepoDurationEnum extends Enum<RepoDurationEnum>

Java class for RepoDurationEnum.

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

 <simpleType name="RepoDurationEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Overnight"/>
     <enumeration value="Term"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • OVERNIGHT

      public static final RepoDurationEnum OVERNIGHT
      Indicates that a contract is classified as overnight, meaning that there is one business day difference between the start and end date of the contract. Business rule: When the repo is overnight, the number of business days between the spot and forward value dates must be one. Forward leg must be specified.
    • TERM

      public static final RepoDurationEnum TERM
      Indicates that a contract is a regular term contract, with a start date and an end date. Business rule: When the repo is 'Term', both spot and forward legs must be specified.
  • Method Details

    • values

      public static RepoDurationEnum[] 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 RepoDurationEnum 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 RepoDurationEnum fromValue(String v)