org.msgpack.value
Interface ValueVisitor
- All Known Implementing Classes:
- AbstractValueVisitor
public interface ValueVisitor
Interface for implementing the visitor pattern on message-packed values
visitNil
void visitNil()
visitBoolean
void visitBoolean(boolean v)
visitInteger
void visitInteger(IntegerValue v)
visitFloat
void visitFloat(FloatValue v)
visitBinary
void visitBinary(BinaryValue v)
visitString
void visitString(StringValue v)
visitArray
void visitArray(ArrayValue v)
visitMap
void visitMap(MapValue v)
visitExtended
void visitExtended(ExtendedValue v)
onError
void onError(java.lang.Exception e)