public enum AccessType extends Enum<AccessType>
| Modifier and Type | Method and Description |
|---|---|
boolean |
allows(AccessType accessType) |
static AccessType |
getAccessTypeFromShortName(String shortName) |
String |
shortName() |
static AccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessType None
public static final AccessType Read
public static final AccessType ReadWrite
public static AccessType[] values()
for (AccessType c : AccessType.values()) System.out.println(c);
public static AccessType 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 static AccessType getAccessTypeFromShortName(String shortName)
public String shortName()
public boolean allows(AccessType accessType)
Copyright © 2014. All Rights Reserved.