public enum StyleKey extends Enum<StyleKey>
| Enum Constant and Description |
|---|
DAILY |
MONTHLY |
NEVER |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equalsString(String string) |
static StyleKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StyleKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StyleKey NEVER
public static final StyleKey DAILY
public static final StyleKey WEEKLY
public static final StyleKey MONTHLY
public static final StyleKey YEARLY
public static StyleKey[] values()
for (StyleKey c : StyleKey.values()) System.out.println(c);
public static StyleKey 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 boolean equalsString(String string)
Copyright © 2013 The Kuali Foundation. All Rights Reserved.