Class BeanType
Java class for beanType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="beanType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="class" type="{http://xmlns.jcp.org/xml/ns/validation/mapping}classType" minOccurs="0"/>
<element name="field" type="{http://xmlns.jcp.org/xml/ns/validation/mapping}fieldType" maxOccurs="unbounded" minOccurs="0"/>
<element name="getter" type="{http://xmlns.jcp.org/xml/ns/validation/mapping}getterType" maxOccurs="unbounded" minOccurs="0"/>
<element name="constructor" type="{http://xmlns.jcp.org/xml/ns/validation/mapping}constructorType" maxOccurs="unbounded" minOccurs="0"/>
<element name="method" type="{http://xmlns.jcp.org/xml/ns/validation/mapping}methodType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="ignore-annotations" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ClassTypeprotected Stringprotected List<ConstructorType>protected List<GetterType>protected Booleanprotected List<MethodType> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the classType property.getClazz()Gets the value of the clazz property.Gets the value of the constructor property.getField()Gets the value of the field property.Gets the value of the getter property.Gets the value of the ignoreAnnotations property.Gets the value of the method property.voidsetClassType(ClassType value) Sets the value of the classType property.voidSets the value of the clazz property.voidsetIgnoreAnnotations(Boolean value) Sets the value of the ignoreAnnotations property.
-
Field Details
-
classType
-
field
-
getter
-
constructor
-
method
-
clazz
-
ignoreAnnotations
-
-
Constructor Details
-
BeanType
public BeanType()
-
-
Method Details
-
getClassType
Gets the value of the classType property.- Returns:
- possible object is
ClassType
-
setClassType
Sets the value of the classType property.- Parameters:
value- allowed object isClassType
-
getField
Gets the value of the field property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the field property.For example, to add a new item, do as follows:
getField().add(newItem);Objects of the following type(s) are allowed in the list
FieldType -
getGetter
Gets the value of the getter property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the getter property.For example, to add a new item, do as follows:
getGetter().add(newItem);Objects of the following type(s) are allowed in the list
GetterType -
getConstructor
Gets the value of the constructor property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the constructor property.For example, to add a new item, do as follows:
getConstructor().add(newItem);Objects of the following type(s) are allowed in the list
ConstructorType -
getMethod
Gets the value of the method property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the method property.For example, to add a new item, do as follows:
getMethod().add(newItem);Objects of the following type(s) are allowed in the list
MethodType -
getClazz
Gets the value of the clazz property.- Returns:
- possible object is
String
-
setClazz
Sets the value of the clazz property.- Parameters:
value- allowed object isString
-
getIgnoreAnnotations
Gets the value of the ignoreAnnotations property.- Returns:
- possible object is
Boolean
-
setIgnoreAnnotations
Sets the value of the ignoreAnnotations property.- Parameters:
value- allowed object isBoolean
-