public class LookupTable extends Object implements Serializable
Java class for LookupTable complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LookupTable"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="LookupEntry" type="{http://atlasmap.io/v2}LookupEntry" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
description |
protected List<LookupEntry> |
lookupEntry |
protected String |
name |
Constructor and Description |
---|
LookupTable() |
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Gets the value of the description property.
|
List<LookupEntry> |
getLookupEntry()
Gets the value of the lookupEntry property.
|
String |
getName()
Gets the value of the name property.
|
void |
setDescription(String value)
Sets the value of the description property.
|
void |
setName(String value)
Sets the value of the name property.
|
protected List<LookupEntry> lookupEntry
protected String name
protected String description
public List<LookupEntry> getLookupEntry()
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 set
method for the lookupEntry property.
For example, to add a new item, do as follows:
getLookupEntry().add(newItem);
Objects of the following type(s) are allowed in the list
LookupEntry
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public String getDescription()
String
Copyright © 2018 JBoss by Red Hat. All rights reserved.