public static enum Report.Repeat extends Enum<Report.Repeat>
| Enum Constant and Description |
|---|
BIWEEKLY |
DAILY |
MONTHLY |
NEVER |
QUARTERLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static Report.Repeat |
create(String val) |
String |
toString() |
static Report.Repeat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Report.Repeat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Report.Repeat NEVER
public static final Report.Repeat DAILY
public static final Report.Repeat WEEKLY
public static final Report.Repeat BIWEEKLY
public static final Report.Repeat MONTHLY
public static final Report.Repeat QUARTERLY
public static final Report.Repeat YEARLY
public static Report.Repeat[] values()
for (Report.Repeat c : Report.Repeat.values()) System.out.println(c);
public static Report.Repeat 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 toString()
toString in class Enum<Report.Repeat>public static Report.Repeat create(String val)
Copyright © 2014. All rights reserved.