Package com.mongodb.client.model
Enum ValidationAction
- All Implemented Interfaces:
Serializable
,Comparable<ValidationAction>
,java.lang.constant.Constable
Determines whether to error on invalid documents or just warn about the violations but allow invalid documents.
- Since:
- 3.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationAction
fromString
(String validationAction) Returns the validationAction from the string representation of a validation action.getValue()
static ValidationAction
Returns the enum constant of this type with the specified name.static ValidationAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ERROR
Documents must pass validation before the write occurs. Otherwise, the write operation fails. -
WARN
Documents do not have to pass validation. If the document fails validation, the write operation logs the validation failure to the mongod logs.
-
-
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
-
getValue
- Returns:
- the String representation of the validation level that the MongoDB server understands
-
fromString
Returns the validationAction from the string representation of a validation action.- Parameters:
validationAction
- the string representation of the validation action.- Returns:
- the validation action
-