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