public enum ObjectMapperOperation extends Enum<ObjectMapperOperation>
| Enum Constant and Description | 
|---|
| DELETEDelete the object in the value field. | 
| SAVESave all fields from the object in the value field. | 
| SAVE_IGNORE_NULLSSave all non-null fields from the object in the value field. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ObjectMapperOperation | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ObjectMapperOperation[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ObjectMapperOperation SAVE
public static final ObjectMapperOperation SAVE_IGNORE_NULLS
public static final ObjectMapperOperation DELETE
public static ObjectMapperOperation[] values()
for (ObjectMapperOperation c : ObjectMapperOperation.values()) System.out.println(c);
public static ObjectMapperOperation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 The Apache Software Foundation. All rights reserved.