public enum PeriodUnit extends Enum<PeriodUnit>
Specifies a unit for a span of time (i.e. period).
| Enum Constant and Description | 
|---|
| MONTHRepresents a unit for a month of the year. | 
| QUARTERRepresents a unit for a quarter of the year. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PeriodUnit | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PeriodUnit[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PeriodUnit QUARTER
public static final PeriodUnit MONTH
public static PeriodUnit[] values()
for (PeriodUnit c : PeriodUnit.values()) System.out.println(c);
public static PeriodUnit 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 © 2018. All rights reserved.