Enum Class BusinessDayConventionEnum

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

public enum BusinessDayConventionEnum extends Enum<BusinessDayConventionEnum>

Java class for BusinessDayConventionEnum.

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

 <simpleType name="BusinessDayConventionEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="FOLLOWING"/>
     <enumeration value="FRN"/>
     <enumeration value="MODFOLLOWING"/>
     <enumeration value="PRECEDING"/>
     <enumeration value="MODPRECEDING"/>
     <enumeration value="NEAREST"/>
     <enumeration value="NONE"/>
     <enumeration value="NotApplicable"/>
   </restriction>
 </simpleType>
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The non-business date will be adjusted to the first following day that is a business day
    Per 2000 ISDA Definitions, Section 4.11.
    The non-business date will be adjusted to the first following day that is a business day unless that day falls in the next calendar month, in which case that date will be the first preceding day that is a business day.
    The non-business date will be adjusted to the first preceding day that is a business day unless that day falls in the previous calendar month, in which case that date will be the first following day that us a business day.
    The non-business date will be adjusted to the nearest day that is a business day - i.e.
    The date will not be adjusted if it falls on a day that is not a business day.
    The date adjustments conventions are defined elsewhere, so it is not required to specify them here.
    The non-business day will be adjusted to the first preceding day that is a business day.
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
    valueOf​(String name)
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • FOLLOWING

      public static final BusinessDayConventionEnum FOLLOWING
      The non-business date will be adjusted to the first following day that is a business day
    • FRN

      public static final BusinessDayConventionEnum FRN
      Per 2000 ISDA Definitions, Section 4.11. FRN Convention; Eurodollar Convention.
    • MODFOLLOWING

      public static final BusinessDayConventionEnum MODFOLLOWING
      The non-business date will be adjusted to the first following day that is a business day unless that day falls in the next calendar month, in which case that date will be the first preceding day that is a business day.
    • PRECEDING

      public static final BusinessDayConventionEnum PRECEDING
      The non-business day will be adjusted to the first preceding day that is a business day.
    • MODPRECEDING

      public static final BusinessDayConventionEnum MODPRECEDING
      The non-business date will be adjusted to the first preceding day that is a business day unless that day falls in the previous calendar month, in which case that date will be the first following day that us a business day.
    • NEAREST

      public static final BusinessDayConventionEnum NEAREST
      The non-business date will be adjusted to the nearest day that is a business day - i.e. if the non-business day falls on any day other than a Sunday or a Monday, it will be the first preceding day that is a business day, and will be the first following business day if it falls on a Sunday or a Monday.
    • NONE

      public static final BusinessDayConventionEnum NONE
      The date will not be adjusted if it falls on a day that is not a business day.
    • NOT_APPLICABLE

      public static final BusinessDayConventionEnum NOT_APPLICABLE
      The date adjustments conventions are defined elsewhere, so it is not required to specify them here.
  • Method Details

    • values

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