Class Schemes
Java class for Schemes complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Schemes">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Scheme" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="DualBrandPair" maxOccurs="unbounded" minOccurs="0">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="schemeA" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="schemeB" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="default" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classJava class for anonymous complex type. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the dualBrandPair property.Gets the value of the scheme property.
-
Field Details
-
scheme
-
dualBrandPair
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v3.0.2", date="2026-06-04T12:18:59Z") protected List<Schemes.DualBrandPair> dualBrandPair
-
-
Constructor Details
-
Schemes
public Schemes()
-
-
Method Details
-
getScheme
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v3.0.2", date="2026-06-04T12:18:59Z") public List<String> getScheme()Gets the value of the scheme 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 scheme property.For example, to add a new item, do as follows:
getScheme().add(newItem);Objects of the following type(s) are allowed in the list
String -
getDualBrandPair
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v3.0.2", date="2026-06-04T12:18:59Z") public List<Schemes.DualBrandPair> getDualBrandPair()Gets the value of the dualBrandPair 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 dualBrandPair property.For example, to add a new item, do as follows:
getDualBrandPair().add(newItem);Objects of the following type(s) are allowed in the list
Schemes.DualBrandPair
-