Package oracle.pgx.config
Enum RdfAction
- java.lang.Object
-
- java.lang.Enum<RdfAction>
-
- oracle.pgx.config.RdfAction
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RdfAction
fromPropertyType(PropertyType propertyType)
PropertyType
getPropertyType()
java.lang.String
toKey()
static RdfAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RdfAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOL
public static final RdfAction BOOL
-
INTEGER
public static final RdfAction INTEGER
-
INT
public static final RdfAction INT
-
LONG
public static final RdfAction LONG
-
FLOAT
public static final RdfAction FLOAT
-
DOUBLE
public static final RdfAction DOUBLE
-
VERTEX
public static final RdfAction VERTEX
-
EDGE
public static final RdfAction EDGE
-
STRING
public static final RdfAction STRING
-
TIME
public static final RdfAction TIME
-
DATE
public static final RdfAction DATE
-
RO_STRING_SET
public static final RdfAction RO_STRING_SET
-
VERTEX_LABEL
public static final RdfAction VERTEX_LABEL
-
IGNORE
public static final RdfAction IGNORE
-
-
Method Detail
-
values
public static RdfAction[] 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 (RdfAction c : RdfAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RdfAction 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
-
toKey
public java.lang.String toKey()
- Returns:
- JSON key representation of this type
-
getPropertyType
public PropertyType getPropertyType()
-
fromPropertyType
public static RdfAction fromPropertyType(PropertyType propertyType)
-
-