Enum StatementEditingMode
- All Implemented Interfaces:
Serializable,Comparable<StatementEditingMode>,java.lang.constant.Constable
What to do with statements input in the schema.
- Author:
- Antonin Delpeuch
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf there are no matching statements on the item, add our statement.If there are no matching statements on the item, add our statement.Delete any statement that matches our statement. -
Method Summary
Modifier and TypeMethodDescriptionstatic StatementEditingModeReturns the enum constant of this type with the specified name.static StatementEditingMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ADD
If there are no matching statements on the item, add our statement. Otherwise, leave the item unchanged. -
ADD_OR_MERGE
If there are no matching statements on the item, add our statement. Otherwise, merge our statement with the first matching one. -
DELETE
Delete any statement that matches our statement.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-