public class AttributeType
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Specifies whether the attribute is standard or custom.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
name
The name of the attribute.
|
private java.lang.String |
value
The value of the attribute.
|
Constructor and Description |
---|
AttributeType() |
Modifier and Type | Method and Description |
---|---|
AttributeType |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getName()
The name of the attribute.
|
java.lang.String |
getValue()
The value of the attribute.
|
int |
hashCode() |
void |
setName(java.lang.String name)
The name of the attribute.
|
void |
setValue(java.lang.String value)
The value of the attribute.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
AttributeType |
withName(java.lang.String name)
The name of the attribute.
|
AttributeType |
withValue(java.lang.String value)
The value of the attribute.
|
private java.lang.String name
The name of the attribute.
private java.lang.String value
The value of the attribute.
public void setName(java.lang.String name)
The name of the attribute.
name
- The name of the attribute.public java.lang.String getName()
The name of the attribute.
public AttributeType withName(java.lang.String name)
The name of the attribute.
name
- The name of the attribute.public void setValue(java.lang.String value)
The value of the attribute.
value
- The value of the attribute.public java.lang.String getValue()
The value of the attribute.
public AttributeType withValue(java.lang.String value)
The value of the attribute.
value
- The value of the attribute.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public AttributeType clone()
clone
in class java.lang.Object