| Enum Constant and Description |
|---|
ACTUAL |
DAYS_360 |
DAYS_365 |
EUROPEAN_DAYS_360 |
| Modifier and Type | Method and Description |
|---|---|
static YearBasis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static YearBasis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YearBasis ACTUAL
public static final YearBasis DAYS_360
public static final YearBasis DAYS_365
public static final YearBasis EUROPEAN_DAYS_360
public static YearBasis 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 YearBasis[] values()
for (YearBasis c : YearBasis.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.