public enum BillingPeriodType extends Enum<BillingPeriodType>
| Enum Constant and Description |
|---|
DAY |
MONTH |
NOBILLINGPERIODTYPE |
SEMIMONTH |
WEEK |
YEAR |
| Modifier and Type | Method and Description |
|---|---|
static BillingPeriodType |
fromValue(String v) |
String |
getValue() |
static BillingPeriodType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BillingPeriodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BillingPeriodType NOBILLINGPERIODTYPE
public static final BillingPeriodType DAY
public static final BillingPeriodType WEEK
public static final BillingPeriodType SEMIMONTH
public static final BillingPeriodType MONTH
public static final BillingPeriodType YEAR
public static BillingPeriodType[] values()
for (BillingPeriodType c : BillingPeriodType.values()) System.out.println(c);
public static BillingPeriodType 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 nullpublic String getValue()
public static BillingPeriodType fromValue(String v)
Copyright © 2017. All Rights Reserved.