public enum SimpleSecurity extends java.lang.Enum<SimpleSecurity>
| Enum Constant and Description |
|---|
Private
Private security means other users see no information at all about a
scheduled item, not even that the item is scheduled.
|
Public
Public security means other users can see the scheduled item and all
the information about the item.
|
| Modifier and Type | Method and Description |
|---|---|
static SimpleSecurity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleSecurity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleSecurity Public
public static final SimpleSecurity Private
public static SimpleSecurity[] values()
for (SimpleSecurity c : SimpleSecurity.values()) System.out.println(c);
public static SimpleSecurity 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