@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class UpdateXMLClassifierRequest extends Object implements Serializable, Cloneable, StructuredPojo
Specifies an XML classifier to be updated.
Constructor and Description |
---|
UpdateXMLClassifierRequest() |
Modifier and Type | Method and Description |
---|---|
UpdateXMLClassifierRequest |
clone() |
boolean |
equals(Object obj) |
String |
getClassification()
An identifier of the data format that the classifier matches.
|
String |
getName()
The name of the classifier.
|
String |
getRowTag()
The XML tag designating the element that contains each record in an XML document being parsed.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setClassification(String classification)
An identifier of the data format that the classifier matches.
|
void |
setName(String name)
The name of the classifier.
|
void |
setRowTag(String rowTag)
The XML tag designating the element that contains each record in an XML document being parsed.
|
String |
toString()
Returns a string representation of this object.
|
UpdateXMLClassifierRequest |
withClassification(String classification)
An identifier of the data format that the classifier matches.
|
UpdateXMLClassifierRequest |
withName(String name)
The name of the classifier.
|
UpdateXMLClassifierRequest |
withRowTag(String rowTag)
The XML tag designating the element that contains each record in an XML document being parsed.
|
public void setName(String name)
The name of the classifier.
name
- The name of the classifier.public String getName()
The name of the classifier.
public UpdateXMLClassifierRequest withName(String name)
The name of the classifier.
name
- The name of the classifier.public void setClassification(String classification)
An identifier of the data format that the classifier matches.
classification
- An identifier of the data format that the classifier matches.public String getClassification()
An identifier of the data format that the classifier matches.
public UpdateXMLClassifierRequest withClassification(String classification)
An identifier of the data format that the classifier matches.
classification
- An identifier of the data format that the classifier matches.public void setRowTag(String rowTag)
The XML tag designating the element that contains each record in an XML document being parsed. This cannot
identify a self-closing element (closed by />
). An empty row element that contains only
attributes can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).
rowTag
- The XML tag designating the element that contains each record in an XML document being parsed. This cannot
identify a self-closing element (closed by />
). An empty row element that contains only
attributes can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).public String getRowTag()
The XML tag designating the element that contains each record in an XML document being parsed. This cannot
identify a self-closing element (closed by />
). An empty row element that contains only
attributes can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).
/>
). An empty row element that contains
only attributes can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).public UpdateXMLClassifierRequest withRowTag(String rowTag)
The XML tag designating the element that contains each record in an XML document being parsed. This cannot
identify a self-closing element (closed by />
). An empty row element that contains only
attributes can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).
rowTag
- The XML tag designating the element that contains each record in an XML document being parsed. This cannot
identify a self-closing element (closed by />
). An empty row element that contains only
attributes can be parsed as long as it ends with a closing tag (for example,
<row item_a="A" item_b="B"></row>
is okay, but
<row item_a="A" item_b="B" />
is not).public String toString()
toString
in class Object
Object.toString()
public UpdateXMLClassifierRequest clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.