Package oracle.kv.lob
Enum KVLargeObject.LOBState
- java.lang.Object
 - 
- java.lang.Enum<KVLargeObject.LOBState>
 - 
- oracle.kv.lob.KVLargeObject.LOBState
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<KVLargeObject.LOBState>,oracle.kv.impl.util.FastExternalizable
- Enclosing interface:
 - KVLargeObject
 
public static enum KVLargeObject.LOBState extends Enum<KVLargeObject.LOBState> implements oracle.kv.impl.util.FastExternalizable
The enumeration defines the states associated with a LOB.- Since:
 - 2.1.55
 
 
- 
- 
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETEDenotes a LOB that has been completed.PARTIAL_APPENDDenotes a LOB resulting from an incompleteappendoperation.PARTIAL_DELETEDenotes a LOB resulting from an incompletedeleteoperation.PARTIAL_PUTDenotes a LOB resulting from an incompleteputoperation. 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KVLargeObject.LOBStatevalueOf(String name)Returns the enum constant of this type with the specified name.static KVLargeObject.LOBState[]values()Returns an array containing the constants of this enum type, in the order they are declared. 
 - 
 
- 
- 
Enum Constant Detail
- 
PARTIAL_PUT
public static final KVLargeObject.LOBState PARTIAL_PUT
Denotes a LOB resulting from an incompleteputoperation. It can be completed by retrying the put operation, thus proceeding from where theputfailed or it can be deleted and theputcan be retried afresh. 
- 
PARTIAL_APPEND
public static final KVLargeObject.LOBState PARTIAL_APPEND
Denotes a LOB resulting from an incompleteappendoperation. It can be completed by retrying the append operation, thus proceeding from where theappendfailed or it can be deleted and the LOB can be recreated in its entirety. 
- 
PARTIAL_DELETE
public static final KVLargeObject.LOBState PARTIAL_DELETE
Denotes a LOB resulting from an incompletedeleteoperation. It can be deleted or replaced by a newputoperation. 
- 
COMPLETE
public static final KVLargeObject.LOBState COMPLETE
Denotes a LOB that has been completed. The LOB can be read, deleted, or can be modified by initiating a newappendoperation. 
 - 
 
- 
Method Detail
- 
values
public static KVLargeObject.LOBState[] 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 (KVLargeObject.LOBState c : KVLargeObject.LOBState.values()) System.out.println(c);
- Returns:
 - an array containing the constants of this enum type, in the order they are declared
 
 
- 
valueOf
public static KVLargeObject.LOBState valueOf(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:
 IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
 
 - 
 
 -