public enum SharingPublicPolicyType extends java.lang.Enum<SharingPublicPolicyType>
| Enum Constant and Description |
|---|
DISABLED
Value used to indicate that doc sharing is enabled only within team.
|
INVITE_ONLY
Users must be explicitly invited to this doc.
|
PEOPLE_WITH_LINK_CAN_EDIT
Users who have a link to this doc can edit it.
|
PEOPLE_WITH_LINK_CAN_VIEW_AND_COMMENT
Users who have a link to this doc can view and comment on it.
|
| Modifier and Type | Method and Description |
|---|---|
static SharingPublicPolicyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SharingPublicPolicyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharingPublicPolicyType PEOPLE_WITH_LINK_CAN_EDIT
public static final SharingPublicPolicyType PEOPLE_WITH_LINK_CAN_VIEW_AND_COMMENT
public static final SharingPublicPolicyType INVITE_ONLY
public static final SharingPublicPolicyType DISABLED
public static SharingPublicPolicyType[] values()
for (SharingPublicPolicyType c : SharingPublicPolicyType.values()) System.out.println(c);
public static SharingPublicPolicyType 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