public enum OrderPeriodicity extends Enum<OrderPeriodicity>
| Enum Constant and Description |
|---|
ANNUALLY |
MANUALLY |
MONTHLY |
QUARTERLY |
SEMI_ANNUALLY |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static OrderPeriodicity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderPeriodicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderPeriodicity ANNUALLY
public static final OrderPeriodicity SEMI_ANNUALLY
public static final OrderPeriodicity QUARTERLY
public static final OrderPeriodicity MONTHLY
public static final OrderPeriodicity WEEKLY
public static final OrderPeriodicity MANUALLY
public static OrderPeriodicity[] values()
for (OrderPeriodicity c : OrderPeriodicity.values()) System.out.println(c);
public static OrderPeriodicity valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.