public enum AccessRights extends Enum<AccessRights> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
APPEND_ACCESS |
APPEND_TO_ACCESS |
ASSIGN_ACCESS |
CREATE_ACCESS |
DELETE_ACCESS |
NONE |
READ_ACCESS |
SHARE_ACCESS |
WRITE_ACCESS |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static AccessRights |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessRights[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessRights NONE
public static final AccessRights READ_ACCESS
public static final AccessRights WRITE_ACCESS
public static final AccessRights APPEND_ACCESS
public static final AccessRights APPEND_TO_ACCESS
public static final AccessRights CREATE_ACCESS
public static final AccessRights DELETE_ACCESS
public static final AccessRights SHARE_ACCESS
public static final AccessRights ASSIGN_ACCESS
public static AccessRights[] values()
for (AccessRights c : AccessRights.values()) System.out.println(c);
public static AccessRights 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 enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2020. All rights reserved.