public enum DayCountBasis extends java.lang.Enum<DayCountBasis>
Enum Constant and Description |
---|
ACTUAL_360 |
ACTUAL_365 |
ACTUAL_ACTUAL |
EUROPEAN_30_360 |
US_30_360 |
Modifier and Type | Method and Description |
---|---|
static DayCountBasis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DayCountBasis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DayCountBasis ACTUAL_360
public static final DayCountBasis ACTUAL_365
public static final DayCountBasis ACTUAL_ACTUAL
public static final DayCountBasis EUROPEAN_30_360
public static final DayCountBasis US_30_360
public static DayCountBasis valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DayCountBasis[] values()
for (DayCountBasis c : DayCountBasis.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.