Uses of Enum Class
org.simpleframework.xml.core.MethodType
Packages that use MethodType
-
Uses of MethodType in org.simpleframework.xml.core
Subclasses with type arguments of type MethodType in org.simpleframework.xml.coreModifier and TypeClassDescription(package private) enumTheMethodTypeenumeration is used to specify a set of types that can be used to classify Java Beans methods.Fields in org.simpleframework.xml.core declared as MethodTypeModifier and TypeFieldDescriptionprivate final MethodTypeGetPart.typeThis represents the method type for the get part method.private MethodTypeMethodName.typeThis is the type of method this method name represents.private final MethodTypeSetPart.typeThis 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 MethodTypeMethodPartFactory.getMethodType(Method method) This is used to acquire aMethodTypefor 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 MethodTypeReturns 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 MethodNameMethodPartFactory.getRead(Method method, MethodType type) This is used to acquire aMethodNamefor the name and annotation of the provided method.private StringMethodPartFactory.getTypeName(String name, MethodType type) This is used to acquire the name of the method in a Java Bean property style.private MethodNameMethodPartFactory.getWrite(Method method, MethodType type) This is used to acquire aMethodNamefor 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 theMethodNameobjects.