public class Attribute
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents a named directory attribute.
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 |
---|
Attribute() |
Modifier and Type | Method and Description |
---|---|
Attribute |
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.
|
Attribute |
withName(java.lang.String name)
The name of the attribute.
|
Attribute |
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 Attribute 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 Attribute 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 Attribute clone()
clone
in class java.lang.Object