MCPcopy Create free account
hub / github.com/cmu-db/benchbase / DialectType

Class DialectType

src/main/java/com/oltpbenchmark/api/dialects/DialectType.java:50–101  ·  view source on GitHub ↗

Java class for dialectType complex type. The following schema fragment specifies the expected content contained within this class. <complexType name="dialectType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> &l

Source from the content-addressed store, hash-verified

48 * </pre>
49 */
50@XmlAccessorType(XmlAccessType.FIELD)
51@XmlType(
52 name = "dialectType",
53 propOrder = {"procedure"})
54public class DialectType {
55
56 @XmlElement(required = true)
57 protected List<ProcedureType> procedure;
58
59 @XmlAttribute(required = true)
60 protected String type;
61
62 /**
63 * Gets the value of the procedure property.
64 *
65 * <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
66 * modification you make to the returned list will be present inside the JAXB object. This is why
67 * there is not a <CODE>set</CODE> method for the procedure property.
68 *
69 * <p>For example, to add a new item, do as follows:
70 *
71 * <pre>
72 * getProcedure().add(newItem);
73 * </pre>
74 *
75 * <p>Objects of the following type(s) are allowed in the list {@link ProcedureType }
76 */
77 public List<ProcedureType> getProcedure() {
78 if (procedure == null) {
79 procedure = new ArrayList<>();
80 }
81 return this.procedure;
82 }
83
84 /**
85 * Gets the value of the type property.
86 *
87 * @return possible object is {@link String }
88 */
89 public String getType() {
90 return type;
91 }
92
93 /**
94 * Sets the value of the type property.
95 *
96 * @param value allowed object is {@link String }
97 */
98 public void setType(String value) {
99 this.type = value;
100 }
101}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected