Package com.complexible.stardog.metadata
Enum MetaProperty.Flag
- java.lang.Object
-
- java.lang.Enum<MetaProperty.Flag>
-
- com.complexible.stardog.metadata.MetaProperty.Flag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MetaProperty.Flag>
- Enclosing class:
- MetaProperty<T>
protected static enum MetaProperty.Flag extends java.lang.Enum<MetaProperty.Flag>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetaProperty.Flag
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetaProperty.Flag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final MetaProperty.Flag READ
-
WRITE
public static final MetaProperty.Flag WRITE
-
WRITE_ONLINE
public static final MetaProperty.Flag WRITE_ONLINE
-
CREATE
public static final MetaProperty.Flag CREATE
-
MEMORY
public static final MetaProperty.Flag MEMORY
-
DISK
public static final MetaProperty.Flag DISK
-
DATABASE
public static final MetaProperty.Flag DATABASE
-
SECURE
public static final MetaProperty.Flag SECURE
-
TEMPORARY
public static final MetaProperty.Flag TEMPORARY
-
SERVER
public static final MetaProperty.Flag SERVER
-
-
Method Detail
-
values
public static MetaProperty.Flag[] 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 (MetaProperty.Flag c : MetaProperty.Flag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetaProperty.Flag valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-