Class ClusteredProperties.PropertyValue
- java.lang.Object
-
- com.oracle.coherence.concurrent.executor.ClusteredProperties.PropertyValue
-
- All Implemented Interfaces:
ExternalizableLite,PortableObject,Serializable
- Enclosing class:
- ClusteredProperties
public static class ClusteredProperties.PropertyValue extends Object implements ExternalizableLite, PortableObject
Property value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyValue()Deserialization constructor.PropertyValue(String sTaskId, Object oValue)Construct a PropertyValue instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetTaskId()Return task key.ObjectgetValue()Return property value.inthashCode()voidreadExternal(PofReader in)voidreadExternal(DataInput in)StringtoString()voidwriteExternal(PofWriter out)voidwriteExternal(DataOutput out)
-
-
-
Method Detail
-
getTaskId
public String getTaskId()
Return task key.- Returns:
- task key
-
getValue
public Object getValue()
Return property value.- Returns:
- property value
-
readExternal
public void readExternal(DataInput in) throws IOException
- Specified by:
readExternalin interfaceExternalizableLite- Throws:
IOException
-
writeExternal
public void writeExternal(DataOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizableLite- Throws:
IOException
-
readExternal
public void readExternal(PofReader in) throws IOException
- Specified by:
readExternalin interfacePortableObject- Throws:
IOException
-
writeExternal
public void writeExternal(PofWriter out) throws IOException
- Specified by:
writeExternalin interfacePortableObject- Throws:
IOException
-
-