public enum ProjectFrequency extends Enum<ProjectFrequency>
Enum Constant and Description |
---|
AT_PROJECT_COMPLETION |
PER_INVOICE |
SCHEDULED |
Modifier and Type | Method and Description |
---|---|
static ProjectFrequency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectFrequency SCHEDULED
public static final ProjectFrequency PER_INVOICE
public static final ProjectFrequency AT_PROJECT_COMPLETION
public static ProjectFrequency[] values()
for (ProjectFrequency c : ProjectFrequency.values()) System.out.println(c);
public static ProjectFrequency 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 © 2010–2016. All rights reserved.