|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FieldValue | |
|---|---|
| org.openfast | |
| org.openfast.debug | |
| org.openfast.template | |
| org.openfast.template.operator | |
| org.openfast.template.type | |
| Uses of FieldValue in org.openfast |
|---|
| Classes in org.openfast that implement FieldValue | |
|---|---|
class |
BitVectorValue
|
class |
ByteVectorValue
|
class |
DateValue
|
class |
DecimalValue
|
class |
GroupValue
|
class |
IntegerValue
|
class |
Message
|
class |
NumericValue
|
class |
ScalarValue
|
class |
SequenceValue
|
class |
StringValue
|
| Fields in org.openfast declared as FieldValue | |
|---|---|
protected FieldValue[] |
GroupValue.values
|
| Methods in org.openfast that return FieldValue | |
|---|---|
FieldValue |
SequenceValue.copy()
|
FieldValue |
ScalarValue.copy()
|
FieldValue |
Message.copy()
|
FieldValue |
GroupValue.copy()
|
FieldValue |
FieldValue.copy()
|
FieldValue |
GroupValue.getValue(int fieldIndex)
|
FieldValue |
GroupValue.getValue(java.lang.String fieldName)
|
| Methods in org.openfast with parameters of type FieldValue | |
|---|---|
void |
SequenceValue.add(FieldValue[] values)
|
void |
GroupValue.setFieldValue(Field field,
FieldValue value)
|
void |
GroupValue.setFieldValue(int fieldIndex,
FieldValue value)
|
void |
GroupValue.setFieldValue(java.lang.String fieldName,
FieldValue value)
|
| Constructors in org.openfast with parameters of type FieldValue | |
|---|---|
GroupValue(Group group,
FieldValue[] values)
|
|
Message(MessageTemplate template,
FieldValue[] fieldValues)
|
|
| Uses of FieldValue in org.openfast.debug |
|---|
| Methods in org.openfast.debug with parameters of type FieldValue | |
|---|---|
void |
Trace.field(Field field,
FieldValue value,
FieldValue encoded,
byte[] encoding,
int pmapIndex)
|
void |
BasicEncodeTrace.field(Field field,
FieldValue value,
FieldValue encoded,
byte[] encoding,
int pmapIndex)
|
void |
BasicDecodeTrace.field(Field field,
FieldValue value,
FieldValue decodedValue,
byte[] encoding,
int pmapIndex)
|
| Uses of FieldValue in org.openfast.template |
|---|
| Classes in org.openfast.template that implement FieldValue | |
|---|---|
class |
LongValue
|
class |
TwinValue
|
| Methods in org.openfast.template that return FieldValue | |
|---|---|
FieldValue |
ComposedValueConverter.compose(FieldValue[] values)
|
FieldValue |
StaticTemplateReference.createValue(java.lang.String value)
|
FieldValue |
Sequence.createValue(java.lang.String value)
|
FieldValue |
Scalar.createValue(java.lang.String value)
|
FieldValue |
MessageTemplate.createValue(java.lang.String value)
|
FieldValue |
Group.createValue(java.lang.String value)
|
abstract FieldValue |
Field.createValue(java.lang.String value)
createValue method declaration |
FieldValue |
DynamicTemplateReference.createValue(java.lang.String value)
|
FieldValue |
ComposedScalar.createValue(java.lang.String value)
|
FieldValue |
StaticTemplateReference.decode(java.io.InputStream in,
Group template,
Context context,
BitVectorReader pmapReader)
|
FieldValue |
Sequence.decode(java.io.InputStream in,
Group template,
Context context,
BitVectorReader pmapReader)
Decode the specified stream of data |
FieldValue |
Scalar.decode(java.io.InputStream in,
Group template,
Context context,
BitVectorReader presenceMapReader)
|
FieldValue |
Group.decode(java.io.InputStream in,
Group group,
Context context,
BitVectorReader pmapReader)
|
abstract FieldValue |
Field.decode(java.io.InputStream in,
Group template,
Context context,
BitVectorReader presenceMapReader)
FieldValue decode method declaration |
FieldValue |
DynamicTemplateReference.decode(java.io.InputStream in,
Group template,
Context context,
BitVectorReader pmapReader)
|
FieldValue |
ComposedScalar.decode(java.io.InputStream in,
Group template,
Context context,
BitVectorReader presenceMapReader)
|
FieldValue[] |
Group.decodeFieldValues(java.io.InputStream in,
Group template,
BitVectorReader pmapReader,
Context context)
Goes through the all the field value array, starting with the index passed, checks to see if a map actually created for the field to pass to the decoder - the field index is created as a new Group object and stored to the the FieldValue array. |
protected FieldValue[] |
Group.decodeFieldValues(java.io.InputStream in,
Group template,
Context context)
If there is not a vector map created for the inputStream, a vector map will be created to pass to the public decodeFieldValues method. |
FieldValue[] |
ComposedValueConverter.split(FieldValue value)
|
| Methods in org.openfast.template with parameters of type FieldValue | |
|---|---|
FieldValue |
ComposedValueConverter.compose(FieldValue[] values)
|
byte[] |
Group.encode(FieldValue value,
Group template,
Context context)
If there is no BitVector, this encoding method will create one. |
byte[] |
StaticTemplateReference.encode(FieldValue value,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
|
byte[] |
Sequence.encode(FieldValue value,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
Store the data passed to a byte array |
byte[] |
Scalar.encode(FieldValue fieldValue,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
|
byte[] |
Group.encode(FieldValue value,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
If your FieldValue already has a BitVector, use this encode method. |
abstract byte[] |
Field.encode(FieldValue value,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
byte[] encode method declaration |
byte[] |
DynamicTemplateReference.encode(FieldValue value,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
|
byte[] |
ComposedScalar.encode(FieldValue value,
Group template,
Context context,
BitVectorBuilder presenceMapBuilder)
|
boolean |
StaticTemplateReference.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
|
boolean |
Sequence.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
|
boolean |
Scalar.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
|
boolean |
Group.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
Determine if there is a Map of the passed byte array and fieldValue |
abstract boolean |
Field.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
isPresenceMapBitSet method declaration |
boolean |
DynamicTemplateReference.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
|
boolean |
ComposedScalar.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
|
FieldValue[] |
ComposedValueConverter.split(FieldValue value)
|
| Uses of FieldValue in org.openfast.template.operator |
|---|
| Methods in org.openfast.template.operator with parameters of type FieldValue | |
|---|---|
boolean |
OperatorCodec.isPresenceMapBitSet(byte[] encoding,
FieldValue fieldValue)
|
| Uses of FieldValue in org.openfast.template.type |
|---|
| Methods in org.openfast.template.type that return FieldValue | |
|---|---|
FieldValue |
DecimalConverter.compose(FieldValue[] values)
|
FieldValue[] |
DecimalConverter.split(FieldValue value)
|
| Methods in org.openfast.template.type with parameters of type FieldValue | |
|---|---|
FieldValue |
DecimalConverter.compose(FieldValue[] values)
|
FieldValue[] |
DecimalConverter.split(FieldValue value)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||