Uses of Class
com.upokecenter.cbor.PODOptions
-
Uses of PODOptions in com.upokecenter.cbor
Fields in com.upokecenter.cbor declared as PODOptionsModifier and TypeFieldDescriptionstatic final PODOptionsPODOptions.DefaultThe default settings for "plain old data" options.Methods in com.upokecenter.cbor with parameters of type PODOptionsModifier and TypeMethodDescriptionstatic <T> TCBORObject.DecodeObjectFromBytes(byte[] data, CBOREncodeOptions enc, Type t, CBORTypeMapper mapper, PODOptions pod) Generates an object of an arbitrary type from an array of CBOR-encoded bytes, using the givenCBOREncodeOptionsobject to control the decoding process.static <T> TCBORObject.DecodeObjectFromBytes(byte[] data, Type t, CBORTypeMapper mapper, PODOptions pod) Generates an object of an arbitrary type from an array of CBOR-encoded bytes.static CBORObjectCBORObject.FromObject(Object obj, CBORTypeMapper mapper, PODOptions options) Generates a CBORObject from an arbitrary object, using the given options to control how certain objects are converted to CBOR objects.static CBORObjectCBORObject.FromObject(Object obj, PODOptions options) Generates a CBORObject from an arbitrary object.<T> TCBORObject.ToObject(Type t, CBORTypeMapper mapper, PODOptions options) Converts this CBOR object to an object of an arbitrary type.<T> TCBORObject.ToObject(Type t, PODOptions options) Converts this CBOR object to an object of an arbitrary type.