Package org.apache.qpid.proton.codec
Interface TypeEncoding<V>
-
- All Known Subinterfaces:
ArrayType.ArrayEncoding,BigIntegerType.BigIntegerEncoding,BooleanType.BooleanEncoding,IntegerType.IntegerEncoding,LongType.LongEncoding,PrimitiveTypeEncoding<T>,StringType.StringEncoding,SymbolType.SymbolEncoding,UnsignedIntegerType.UnsignedIntegerEncoding,UnsignedLongType.UnsignedLongEncoding
- All Known Implementing Classes:
ByteType.ByteEncoding,CharacterType.CharacterEncoding,DoubleType.DoubleEncoding,FloatType.FloatEncoding,ShortType.ShortEncoding,UnsignedByteType.UnsignedByteEncoding
public interface TypeEncoding<V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanencodesJavaPrimitive()booleanencodesSuperset(TypeEncoding<V> encoder)intgetConstructorSize()AMQPType<V>getType()intgetValueSize(V val)booleanisFixedSizeVal()voidwriteConstructor()voidwriteValue(V val)
-
-
-
Method Detail
-
writeConstructor
void writeConstructor()
-
getConstructorSize
int getConstructorSize()
-
writeValue
void writeValue(V val)
-
getValueSize
int getValueSize(V val)
-
isFixedSizeVal
boolean isFixedSizeVal()
-
encodesSuperset
boolean encodesSuperset(TypeEncoding<V> encoder)
-
encodesJavaPrimitive
boolean encodesJavaPrimitive()
-
-