Uses of Enum Class
org.simpleframework.xml.core.MethodType
Packages that use MethodType
-
Uses of MethodType in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as MethodTypeModifier and TypeFieldDescriptionprivate final MethodType
GetPart.type
This represents the method type for the get part method.private MethodType
MethodName.type
This is the type of method this method name represents.private final MethodType
SetPart.type
This represents the method type for the set part method.Methods in org.simpleframework.xml.core that return MethodTypeModifier and TypeMethodDescriptionGetPart.getMethodType()
This is the method type for the method part.MethodPart.getMethodType()
This is the method type for the method part.private MethodType
MethodPartFactory.getMethodType
(Method method) This is used to acquire aMethodType
for the name of the method provided.SetPart.getMethodType()
This is the method type for the method part.MethodName.getType()
This is the method type for the method part.static MethodType
Returns the enum constant of this class with the specified name.static MethodType[]
MethodType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.simpleframework.xml.core with parameters of type MethodTypeModifier and TypeMethodDescriptionprivate MethodName
MethodPartFactory.getRead
(Method method, MethodType type) This is used to acquire aMethodName
for the name and annotation of the provided method.private String
MethodPartFactory.getTypeName
(String name, MethodType type) This is used to acquire the name of the method in a Java Bean property style.private MethodName
MethodPartFactory.getWrite
(Method method, MethodType type) This is used to acquire aMethodName
for the name and annotation of the provided method.Constructors in org.simpleframework.xml.core with parameters of type MethodTypeModifierConstructorDescriptionMethodName
(Method method, MethodType type, String name) Constructor for theMethodName
objects.