- java.lang.Object
-
- swim.avro.schema.AvroType<T>
-
- swim.avro.schema.AvroComplexType<T>
-
- swim.avro.schema.AvroNamedType<T>
-
- swim.avro.schema.AvroFixedType<T>
-
public abstract class AvroFixedType<T> extends AvroNamedType<T>
-
-
Constructor Summary
Constructors Constructor Description AvroFixedType()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Decoder<T>
decodeFixed(InputBuffer input)
abstract int
size()
-
Methods inherited from class swim.avro.schema.AvroNamedType
alias, aliasCount, fullName, getAlias, name, namespace
-
-
-
-
Method Detail
-
size
public abstract int size()
-
decodeFixed
public abstract Decoder<T> decodeFixed(InputBuffer input)
-
-