public enum AccessType extends Enum<AccessType>
| Enum Constant and Description |
|---|
PRIVATE |
PUBLIC |
RESTRICTED |
| Modifier and Type | Method and Description |
|---|---|
long |
getBlackboardAccessType() |
String |
getName() |
static AccessType |
resolveAccessType(long blackboardAccessType) |
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 PRIVATE
public static final AccessType RESTRICTED
public static final AccessType PUBLIC
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 resolveAccessType(long blackboardAccessType)
public long getBlackboardAccessType()
public String getName()
Copyright © 2016 Jasig. All Rights Reserved.