Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
com.gemstone.gemfire.pdx |
The
com.gemstone.gemfire.pdx package provides APIs used
for object serialization. |
Modifier and Type | Method and Description |
---|---|
PdxInstanceFactory |
RegionService.createPdxInstanceFactory(String className)
Returns a factory that can create a
PdxInstance . |
Modifier and Type | Method and Description |
---|---|
PdxInstanceFactory |
PdxInstanceFactory.markIdentityField(String fieldName)
Indicate that the named field should be included in hashCode and equals checks
of this object on a server that is accessing
PdxInstance
or when a client executes a query on a server. |
PdxInstanceFactory |
PdxInstanceFactory.writeArrayOfByteArrays(String fieldName,
byte[][] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeBoolean(String fieldName,
boolean value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeBooleanArray(String fieldName,
boolean[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeByte(String fieldName,
byte value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeByteArray(String fieldName,
byte[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeChar(String fieldName,
char value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeCharArray(String fieldName,
char[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeDate(String fieldName,
Date value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeDouble(String fieldName,
double value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeDoubleArray(String fieldName,
double[] value)
Writes the named field with the given value to the serialized form.
|
<CT,VT extends CT> |
PdxInstanceFactory.writeField(String fieldName,
VT fieldValue,
Class<CT> fieldType)
Writes the named field with the given value and type to the serialized form.
|
<CT,VT extends CT> |
PdxInstanceFactory.writeField(String fieldName,
VT fieldValue,
Class<CT> fieldType,
boolean checkPortability)
Writes the named field with the given value and type to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeFloat(String fieldName,
float value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeFloatArray(String fieldName,
float[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeInt(String fieldName,
int value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeIntArray(String fieldName,
int[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeLong(String fieldName,
long value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeLongArray(String fieldName,
long[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeObject(String fieldName,
Object value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeObject(String fieldName,
Object value,
boolean checkPortability)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeObjectArray(String fieldName,
Object[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeObjectArray(String fieldName,
Object[] value,
boolean checkPortability)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeShort(String fieldName,
short value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeShortArray(String fieldName,
short[] value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeString(String fieldName,
String value)
Writes the named field with the given value to the serialized form.
|
PdxInstanceFactory |
PdxInstanceFactory.writeStringArray(String fieldName,
String[] value)
Writes the named field with the given value to the serialized form.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.