public enum SharingModel extends Enum<SharingModel>
| Enum Constant and Description |
|---|
ControlledByParent
Enumeration : ControlledByParent
|
FullAccess
Enumeration : FullAccess
|
Private
Enumeration : Private
|
Read
Enumeration : Read
|
ReadSelect
Enumeration : ReadSelect
|
ReadWrite
Enumeration : ReadWrite
|
ReadWriteTransfer
Enumeration : ReadWriteTransfer
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SharingModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharingModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharingModel Private
public static final SharingModel Read
public static final SharingModel ReadSelect
public static final SharingModel ReadWrite
public static final SharingModel ReadWriteTransfer
public static final SharingModel FullAccess
public static final SharingModel ControlledByParent
public static SharingModel[] values()
for (SharingModel c : SharingModel.values()) System.out.println(c);
public static SharingModel 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 String toString()
toString in class Enum<SharingModel>Copyright © 2015. All Rights Reserved.