public enum Transparency extends java.lang.Enum<Transparency>
| Enum Constant and Description |
|---|
OPAQUE
"opaque" - The event blocks time on the calendar.
|
TRANSPARENT
"transparent" - The event does not block time on the calendar.
|
| Modifier and Type | Method and Description |
|---|---|
static Transparency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Transparency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transparency OPAQUE
public static final Transparency TRANSPARENT
public static Transparency[] values()
for (Transparency c : Transparency.values()) System.out.println(c);
public static Transparency valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null