Uses of Interface
org.simpleframework.xml.transform.Transform

Packages that use Transform
  • Uses of Transform in org.simpleframework.xml.core

    Modifier and Type
    Method
    Description
    Support.getTransform(Class type)
    This is used to match a Transform using the type specified.
    EmptyMatcher.match(Class type)
    This method is used to return a null value for the transform.
  • Uses of Transform in org.simpleframework.xml.transform

    Modifier and Type
    Class
    Description
    (package private) class 
    The PrimitiveArrayTransform is used to transform arrays to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The AtomicIntegerTransform object is used to transform values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The AtomicLongTransform object is used to transform values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The BigDecimalTransform is used to transform decimal values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The BigIntegerTransform is used to transform integer values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The BooleanTransform is used to transform boolean values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The ByteTransform object is used to transform byte values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The CharacterArrayTransform is used to transform text values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The CharacterTransform object transforms character values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The ClassTransform object is used to transform class values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The CurrencyTransform is used to transform currency values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    DateTransform<T extends Date>
    The DateTransform object is used to transform date values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The DoubleTransform is used to transform double values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The EnumTransform represents a transform that is used to transform enumerations to strings and back again.
    (package private) class 
    The FileTransform object is used to transform file paths to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The FloatTransform object is used to transform float values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The DateTransform is used to transform calendar values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The IntegerTransform is used to transform integer values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The LocaleTransform is used to transform locale values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The LongTransform object is used to transform long values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The ShortTransform object is used to transform short values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The StringArrayTransform is used to transform string arrays to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The StringTransform is used to transform strings values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The TimeZoneTransform is used to transform time zone values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    (package private) class 
    The URLTransform object is used to transform URL values to and from string representations, which will be inserted in the generated XML document as the value place holder.
    Modifier and Type
    Field
    Description
    private final Transform
    ArrayTransform.delegate
    This is the transform that performs the individual transform.
    Fields in org.simpleframework.xml.transform with type parameters of type Transform
    Modifier and Type
    Field
    Description
    private final Cache<Transform>
    Transformer.cache
    This is used to cache all transforms matched to a given type.
    private final Cache<Transform>
    RegistryMatcher.transforms
    This is used to fetch transform instances by type.
    Modifier and Type
    Method
    Description
    private Transform
    RegistryMatcher.create(Class type)
    This is used to create a Transform using the type specified.
    private Transform
    RegistryMatcher.create(Class type, Class factory)
    This is used to create a Transform using the type specified.
    private Transform
    Transformer.lookup(Class type)
    This method is used to acquire a Transform for the the specified type.
    ArrayMatcher.match(Class type)
    This is used to match a Transform based on the array component type of an object to be transformed.
    DefaultMatcher.match(Class type)
    This is used to match a Transform for the given type.
    EmptyMatcher.match(Class type)
    This method is used to return a null value for the transform.
    Matcher.match(Class type)
    This is used to match a Transform using the type specified.
    PackageMatcher.match(Class type)
    This method attempts to perform a resolution of the transform based on its package prefix.
    PrimitiveMatcher.match(Class type)
    This method is used to match the specified type to primitive transform implementations.
    RegistryMatcher.match(Class type)
    This is used to match a Transform using the type specified.
    private Transform
    Transformer.match(Class type)
    This method is used to acquire a Transform for the the specified type.
    private Transform
    ArrayMatcher.matchArray(Class entry)
    This is used to match a Transform based on the array component type of an object to be transformed.
    private Transform
    PackageMatcher.matchEnum(Class type)
    This is used to resolve Transform implementations that are Enum implementations.
    private Transform
    PackageMatcher.matchFile(Class type)
    This is used to resolve Transform implementations that relate to the java.io package.
    private Transform
    PackageMatcher.matchLanguage(Class type)
    This is used to resolve Transform implementations that relate to the java.lang package.
    private Transform
    PackageMatcher.matchMath(Class type)
    This is used to resolve Transform implementations that relate to the java.math package.
    private Transform
    PackageMatcher.matchSQL(Class type)
    This is used to resolve Transform implementations that relate to the java.sql package.
    private Transform
    DefaultMatcher.matchType(Class type)
    This is used to match a Transform for the given type.
    private Transform
    PackageMatcher.matchURL(Class type)
    This is used to resolve Transform implementations that relate to the java.net package.
    private Transform
    PackageMatcher.matchUtility(Class type)
    This is used to resolve Transform implementations that relate to the java.util package.
    Methods in org.simpleframework.xml.transform with parameters of type Transform
    Modifier and Type
    Method
    Description
    void
    RegistryMatcher.bind(Class type, Transform transform)
    This is used to bind a Transform instance to the specified type.
    Constructors in org.simpleframework.xml.transform with parameters of type Transform
    Modifier
    Constructor
    Description
     
    ArrayTransform(Transform delegate, Class entry)
    Constructor for the PrimitiveArrayTransform object.