Class FieldType
- java.lang.Object
-
- net.webpdf.wsclient.schema.extraction.info.FieldType
-
public class FieldType extends Object
<?xml version="1.0" encoding="UTF-8"?><p xmlns="http://schema.webpdf.de/1.0/extraction/info" xmlns:xs="http://www.w3.org/2001/XMLSchema">Lists the properties of a PDF form field.</p>
Java class for FieldType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="FieldType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="annotation" type="{http://schema.webpdf.de/1.0/extraction/info}AnnotationType" maxOccurs="unbounded" minOccurs="0"/> <element name="signature" type="{http://schema.webpdf.de/1.0/extraction/info}SignatureType" minOccurs="0"/> <element name="value" type="{http://schema.webpdf.de/1.0/extraction/info}FormValueStyle" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="objectKey" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="subType" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="mappingName" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="alternateName" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="fullyQualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="noExport" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="readOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="multiSelect" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="content" type="{http://www.w3.org/2001/XMLSchema}string" default="" /> <attribute name="isRichText" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringalternateNameprotected List<AnnotationType>annotationprotected Stringcontentprotected StringfullyQualifiedNameprotected BooleanisRichTextprotected StringmappingNameprotected BooleanmultiSelectprotected Stringnameprotected BooleannoExportprotected StringobjectKeyprotected BooleanreadOnlyprotected Booleanrequiredprotected SignatureTypesignatureprotected StringsubTypeprotected Stringtypeprotected List<FormValueStyle>value
-
Constructor Summary
Constructors Constructor Description FieldType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlternateName()Gets the value of the alternateName property.List<AnnotationType>getAnnotation()Gets the value of the annotation property.StringgetContent()Gets the value of the content property.StringgetFullyQualifiedName()Gets the value of the fullyQualifiedName property.StringgetMappingName()Gets the value of the mappingName property.StringgetName()Gets the value of the name property.StringgetObjectKey()Gets the value of the objectKey property.SignatureTypegetSignature()Gets the value of the signature property.StringgetSubType()Gets the value of the subType property.StringgetType()Gets the value of the type property.List<FormValueStyle>getValue()Gets the value of the value property.booleanisIsRichText()Gets the value of the isRichText property.booleanisMultiSelect()Gets the value of the multiSelect property.booleanisNoExport()Gets the value of the noExport property.booleanisReadOnly()Gets the value of the readOnly property.booleanisRequired()Gets the value of the required property.booleanisSetAlternateName()booleanisSetAnnotation()booleanisSetContent()booleanisSetFullyQualifiedName()booleanisSetIsRichText()booleanisSetMappingName()booleanisSetMultiSelect()booleanisSetName()booleanisSetNoExport()booleanisSetObjectKey()booleanisSetReadOnly()booleanisSetRequired()booleanisSetSignature()booleanisSetSubType()booleanisSetType()booleanisSetValue()voidsetAlternateName(String value)Sets the value of the alternateName property.voidsetContent(String value)Sets the value of the content property.voidsetFullyQualifiedName(String value)Sets the value of the fullyQualifiedName property.voidsetIsRichText(boolean value)Sets the value of the isRichText property.voidsetMappingName(String value)Sets the value of the mappingName property.voidsetMultiSelect(boolean value)Sets the value of the multiSelect property.voidsetName(String value)Sets the value of the name property.voidsetNoExport(boolean value)Sets the value of the noExport property.voidsetObjectKey(String value)Sets the value of the objectKey property.voidsetReadOnly(boolean value)Sets the value of the readOnly property.voidsetRequired(boolean value)Sets the value of the required property.voidsetSignature(SignatureType value)Sets the value of the signature property.voidsetSubType(String value)Sets the value of the subType property.voidsetType(String value)Sets the value of the type property.voidunsetAnnotation()voidunsetIsRichText()voidunsetMultiSelect()voidunsetNoExport()voidunsetReadOnly()voidunsetRequired()voidunsetValue()
-
-
-
Field Detail
-
annotation
protected List<AnnotationType> annotation
-
signature
protected SignatureType signature
-
value
protected List<FormValueStyle> value
-
objectKey
protected String objectKey
-
type
protected String type
-
subType
protected String subType
-
name
protected String name
-
mappingName
protected String mappingName
-
alternateName
protected String alternateName
-
fullyQualifiedName
protected String fullyQualifiedName
-
noExport
protected Boolean noExport
-
readOnly
protected Boolean readOnly
-
required
protected Boolean required
-
multiSelect
protected Boolean multiSelect
-
content
protected String content
-
isRichText
protected Boolean isRichText
-
-
Method Detail
-
getAnnotation
public List<AnnotationType> getAnnotation()
Gets the value of the annotation 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 Jakarta XML Binding object. This is why there is not a
setmethod for the annotation property.For example, to add a new item, do as follows:
getAnnotation().add(newItem);Objects of the following type(s) are allowed in the list
AnnotationType- Returns:
- The value of the annotation property.
-
isSetAnnotation
public boolean isSetAnnotation()
-
unsetAnnotation
public void unsetAnnotation()
-
getSignature
public SignatureType getSignature()
Gets the value of the signature property.- Returns:
- possible object is
SignatureType
-
setSignature
public void setSignature(SignatureType value)
Sets the value of the signature property.- Parameters:
value- allowed object isSignatureType
-
isSetSignature
public boolean isSetSignature()
-
getValue
public List<FormValueStyle> getValue()
Gets the value of the value 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 Jakarta XML Binding object. This is why there is not a
setmethod for the value property.For example, to add a new item, do as follows:
getValue().add(newItem);Objects of the following type(s) are allowed in the list
FormValueStyle- Returns:
- The value of the value property.
-
isSetValue
public boolean isSetValue()
-
unsetValue
public void unsetValue()
-
getObjectKey
public String getObjectKey()
Gets the value of the objectKey property.- Returns:
- possible object is
String
-
setObjectKey
public void setObjectKey(String value)
Sets the value of the objectKey property.- Parameters:
value- allowed object isString
-
isSetObjectKey
public boolean isSetObjectKey()
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
isSetType
public boolean isSetType()
-
getSubType
public String getSubType()
Gets the value of the subType property.- Returns:
- possible object is
String
-
setSubType
public void setSubType(String value)
Sets the value of the subType property.- Parameters:
value- allowed object isString
-
isSetSubType
public boolean isSetSubType()
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
isSetName
public boolean isSetName()
-
getMappingName
public String getMappingName()
Gets the value of the mappingName property.- Returns:
- possible object is
String
-
setMappingName
public void setMappingName(String value)
Sets the value of the mappingName property.- Parameters:
value- allowed object isString
-
isSetMappingName
public boolean isSetMappingName()
-
getAlternateName
public String getAlternateName()
Gets the value of the alternateName property.- Returns:
- possible object is
String
-
setAlternateName
public void setAlternateName(String value)
Sets the value of the alternateName property.- Parameters:
value- allowed object isString
-
isSetAlternateName
public boolean isSetAlternateName()
-
getFullyQualifiedName
public String getFullyQualifiedName()
Gets the value of the fullyQualifiedName property.- Returns:
- possible object is
String
-
setFullyQualifiedName
public void setFullyQualifiedName(String value)
Sets the value of the fullyQualifiedName property.- Parameters:
value- allowed object isString
-
isSetFullyQualifiedName
public boolean isSetFullyQualifiedName()
-
isNoExport
public boolean isNoExport()
Gets the value of the noExport property.- Returns:
- possible object is
Boolean
-
setNoExport
public void setNoExport(boolean value)
Sets the value of the noExport property.- Parameters:
value- allowed object isBoolean
-
isSetNoExport
public boolean isSetNoExport()
-
unsetNoExport
public void unsetNoExport()
-
isReadOnly
public boolean isReadOnly()
Gets the value of the readOnly property.- Returns:
- possible object is
Boolean
-
setReadOnly
public void setReadOnly(boolean value)
Sets the value of the readOnly property.- Parameters:
value- allowed object isBoolean
-
isSetReadOnly
public boolean isSetReadOnly()
-
unsetReadOnly
public void unsetReadOnly()
-
isRequired
public boolean isRequired()
Gets the value of the required property.- Returns:
- possible object is
Boolean
-
setRequired
public void setRequired(boolean value)
Sets the value of the required property.- Parameters:
value- allowed object isBoolean
-
isSetRequired
public boolean isSetRequired()
-
unsetRequired
public void unsetRequired()
-
isMultiSelect
public boolean isMultiSelect()
Gets the value of the multiSelect property.- Returns:
- possible object is
Boolean
-
setMultiSelect
public void setMultiSelect(boolean value)
Sets the value of the multiSelect property.- Parameters:
value- allowed object isBoolean
-
isSetMultiSelect
public boolean isSetMultiSelect()
-
unsetMultiSelect
public void unsetMultiSelect()
-
getContent
public String getContent()
Gets the value of the content property.- Returns:
- possible object is
String
-
setContent
public void setContent(String value)
Sets the value of the content property.- Parameters:
value- allowed object isString
-
isSetContent
public boolean isSetContent()
-
isIsRichText
public boolean isIsRichText()
Gets the value of the isRichText property.- Returns:
- possible object is
Boolean
-
setIsRichText
public void setIsRichText(boolean value)
Sets the value of the isRichText property.- Parameters:
value- allowed object isBoolean
-
isSetIsRichText
public boolean isSetIsRichText()
-
unsetIsRichText
public void unsetIsRichText()
-
-