Uses of Class
org.simpleframework.xml.DefaultType
-
Packages that use DefaultType Package Description org.simpleframework.xml org.simpleframework.xml.core -
-
Uses of DefaultType in org.simpleframework.xml
Methods in org.simpleframework.xml that return DefaultType Modifier and Type Method Description DefaultType
value()
This method is used to return the type of default that is to be applied to the class.static DefaultType
DefaultType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultType[]
DefaultType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DefaultType in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as DefaultType Modifier and Type Field Description private DefaultType
DefaultDetail. access
This is the default access type to be used with this detail.private DefaultType
DetailScanner. access
This represents the default access type declared or the type.private DefaultType
DetailExtractor. override
This is an optional access type for the details created.private DefaultType
DetailScanner. override
This represents the access type override declared or the type.Methods in org.simpleframework.xml.core that return DefaultType Modifier and Type Method Description DefaultType
DefaultDetail. getAccess()
This returns theDefault
annotation access type that has been specified by this.DefaultType
Detail. getAccess()
This returns theDefault
annotation access type that has been specified by this.DefaultType
DetailScanner. getAccess()
This returns theDefault
annotation access type that has been specified by this.DefaultType
DefaultDetail. getOverride()
This returns theDefault
annotation access type that has been specified by this.DefaultType
Detail. getOverride()
This returns theDefaultType
override used for this detail.DefaultType
DetailScanner. getOverride()
This returns theDefaultType
override used for this detail.Methods in org.simpleframework.xml.core with parameters of type DefaultType Modifier and Type Method Description private void
FieldScanner. extend(java.lang.Class base, DefaultType access)
This method is used to extend the provided class.private void
MethodScanner. extend(java.lang.Class base, DefaultType access)
This method is used to extend the provided class.private void
FieldScanner. extract(Detail detail, DefaultType access)
This is used to scan all the fields of the class in order to determine if it should have a default annotation.private void
MethodScanner. extract(Detail detail, DefaultType access)
This is used to scan all the methods of the class in order to determine if it should have a default annotation.Detail
Support. getDetail(java.lang.Class type, DefaultType access)
ContactList
Support. getFields(java.lang.Class type, DefaultType access)
This is used to acquire a list ofContact
objects that represent the annotated fields in a type.ContactList
Support. getMethods(java.lang.Class type, DefaultType access)
This is used to acquire a list ofContact
objects that represent the annotated methods in a type.Constructors in org.simpleframework.xml.core with parameters of type DefaultType Constructor Description DefaultDetail(Detail detail, DefaultType access)
Constructor for theDefaultDetail
object.DetailExtractor(Support support, DefaultType override)
Constructor for theDetailExtractor
object.DetailScanner(java.lang.Class type, DefaultType override)
Constructor for theDetailScanner
object.
-