Enum AccessObjectType
- java.lang.Object
-
- java.lang.Enum<AccessObjectType>
-
- edu.cornell.mannlib.vitro.webapp.auth.attributes.AccessObjectType
-
- All Implemented Interfaces:
Serializable,Comparable<AccessObjectType>
public enum AccessObjectType extends Enum<AccessObjectType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AccessObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASS
public static final AccessObjectType CLASS
-
NAMED_OBJECT
public static final AccessObjectType NAMED_OBJECT
-
DATA_PROPERTY
public static final AccessObjectType DATA_PROPERTY
-
OBJECT_PROPERTY
public static final AccessObjectType OBJECT_PROPERTY
-
DATA_PROPERTY_STATEMENT
public static final AccessObjectType DATA_PROPERTY_STATEMENT
-
OBJECT_PROPERTY_STATEMENT
public static final AccessObjectType OBJECT_PROPERTY_STATEMENT
-
ENTITY_URI
public static final AccessObjectType ENTITY_URI
-
ROOT_USER
public static final AccessObjectType ROOT_USER
-
FAUX_OBJECT_PROPERTY
public static final AccessObjectType FAUX_OBJECT_PROPERTY
-
FAUX_DATA_PROPERTY
public static final AccessObjectType FAUX_DATA_PROPERTY
-
FAUX_DATA_PROPERTY_STATEMENT
public static final AccessObjectType FAUX_DATA_PROPERTY_STATEMENT
-
FAUX_OBJECT_PROPERTY_STATEMENT
public static final AccessObjectType FAUX_OBJECT_PROPERTY_STATEMENT
-
INDIVIDUAL
public static final AccessObjectType INDIVIDUAL
-
-
Method Detail
-
values
public static AccessObjectType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccessObjectType c : AccessObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessObjectType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-