Uses of Interface
org.simpleframework.xml.core.Instance
-
Packages that use Instance Package Description org.simpleframework.xml.core -
-
Uses of Instance in org.simpleframework.xml.core
Classes in org.simpleframework.xml.core that implement Instance Modifier and Type Class Description (package private) class
ArrayInstance
TheArrayInstance
object is used for creating arrays from a specifiedValue
object.(package private) class
ConversionInstance
TheConversionInstance
object is used to promote the type to some more specialized type.private class
InstanceFactory.ClassInstance
TheClassInstance
object is used to create an object by using aClass
to determine the type.private class
InstanceFactory.ValueInstance
TheValueInstance
object is used to create an object by using aValue
instance to determine the type.(package private) class
ObjectInstance
TheObjectInstance
is used to instantiate an object from the criteria provided in the givenValue
.Fields in org.simpleframework.xml.core declared as Instance Modifier and Type Field Description protected Instance
Composite.Builder. value
This is the object instance created by the strategy object.Methods in org.simpleframework.xml.core that return Instance Modifier and Type Method Description private Instance
ArrayFactory. getInstance(Value value, java.lang.Class entry)
Creates the array type to use.Instance
ArrayFactory. getInstance(InputNode node)
Creates the array type to use.Instance
CollectionFactory. getInstance(Value value)
This creates aCollection
instance from the type provided.Instance
CollectionFactory. getInstance(InputNode node)
Creates the collection to use.Instance
Context. getInstance(java.lang.Class type)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
Context. getInstance(Value value)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
InstanceFactory. getInstance(java.lang.Class type)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
InstanceFactory. getInstance(Value value)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
MapFactory. getInstance(Value value)
This creates aMap
object instance from the type provided.Instance
MapFactory. getInstance(InputNode node)
Creates the map object to use.Instance
ObjectFactory. getInstance(InputNode node)
This method will instantiate an object of the field type, or if theStrategy
object can resolve a class from the XML element then this is used instead.Instance
PrimitiveFactory. getInstance(InputNode node)
This method will instantiate an object of the field type, or if theStrategy
object can resolve a class from the XML element then this is used instead.Instance
Source. getInstance(java.lang.Class type)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
Source. getInstance(Value value)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
Support. getInstance(java.lang.Class type)
This will create anInstance
that can be used to instantiate objects of the specified class.Instance
Support. getInstance(Value value)
This will create anInstance
that can be used to instantiate objects of the specified class.Methods in org.simpleframework.xml.core with parameters of type Instance Modifier and Type Method Description private Composite.Builder
Composite. read(Schema schema, Instance value)
Thisread
method performs deserialization of the XML schema class type by traversing the contacts and instantiating them using details from the provided XML element.private java.lang.Object
Composite. read(InputNode node, Instance value, java.lang.Class real)
Thisread
method performs deserialization of the XML schema class type by traversing the contacts and instantiating them using details from the provided XML element.private java.lang.Object
Primitive. readElement(InputNode node, Instance value)
Thisread
method will extract the text value from the node and replace any template variables before converting it to a primitive value.private java.lang.Object
Composite. readPrimitive(InputNode node, Instance value)
ThisreadPrimitive
method will extract the text value from the node and replace any template variables before converting it to a primitive value.Constructors in org.simpleframework.xml.core with parameters of type Instance Constructor Description Builder(Composite composite, Criteria criteria, Schema schema, Instance value)
Constructor for theBuilder
object.Injector(Composite composite, Criteria criteria, Schema schema, Instance value)
Constructor for theInjector
object.
-