Uses of Class
jp.develop.common.util.amf.AmfDecoderOption

Packages that use AmfDecoderOption
jp.develop.common.util Package for common utilities. 
jp.develop.common.util.amf Package for public classes of AMF encoding and decoding. 
 

Uses of AmfDecoderOption in jp.develop.common.util
 

Methods in jp.develop.common.util with parameters of type AmfDecoderOption
static Object AmfUtil.decode(byte[] bytes, AmfDecoderOption option)
          Decode a instance from specified AMF bytes.
static
<T> T
AmfUtil.decode(byte[] bytes, Class<? extends T> clazz, AmfDecoderOption option)
          Decode the instance of specified class from AMF bytes.
static
<T> T
AmfUtil.decode(byte[] bytes, Type type, AmfDecoderOption option)
          Decode the instance of specified type from specified bytes.
static Object AmfUtil.decode(InputStream in, AmfDecoderOption option)
          Decode a instance from specified input stream.
static
<T> T
AmfUtil.decode(InputStream in, Class<? extends T> clazz, AmfDecoderOption option)
          Decode the instance of specified class from specified input stream.
static
<T> T
AmfUtil.decode(InputStream in, Type type, AmfDecoderOption option)
          Decode the instance of specified type from specified input stream.
 

Uses of AmfDecoderOption in jp.develop.common.util.amf
 

Methods in jp.develop.common.util.amf that return AmfDecoderOption
static AmfDecoderOption AmfDecoderOption.getDefault()
          Get default configuration option.
 

Constructors in jp.develop.common.util.amf with parameters of type AmfDecoderOption
AmfDecoder(InputStream in, AmfDecoderOption option)
          Constructs a instance with specified input stream and configuration option.