public class Attribute extends Object implements Serializable, Cloneable
The attributes applicable to a container instance when it is registered.
Constructor and Description |
---|
Attribute() |
Modifier and Type | Method and Description |
---|---|
Attribute |
clone() |
boolean |
equals(Object obj) |
String |
getName()
The name of the container instance attribute.
|
String |
getValue()
The value of the container instance attribute (at this time, the value
here is
Null , but this could change in future revisions for
expandability). |
int |
hashCode() |
void |
setName(String name)
The name of the container instance attribute.
|
void |
setValue(String value)
The value of the container instance attribute (at this time, the value
here is
Null , but this could change in future revisions for
expandability). |
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Attribute |
withName(String name)
The name of the container instance attribute.
|
Attribute |
withValue(String value)
The value of the container instance attribute (at this time, the value
here is
Null , but this could change in future revisions for
expandability). |
public void setName(String name)
The name of the container instance attribute.
name
- The name of the container instance attribute.public String getName()
The name of the container instance attribute.
public Attribute withName(String name)
The name of the container instance attribute.
name
- The name of the container instance attribute.public void setValue(String value)
The value of the container instance attribute (at this time, the value
here is Null
, but this could change in future revisions for
expandability).
value
- The value of the container instance attribute (at this time, the
value here is Null
, but this could change in future
revisions for expandability).public String getValue()
The value of the container instance attribute (at this time, the value
here is Null
, but this could change in future revisions for
expandability).
Null
, but this could change in future
revisions for expandability).public Attribute withValue(String value)
The value of the container instance attribute (at this time, the value
here is Null
, but this could change in future revisions for
expandability).
value
- The value of the container instance attribute (at this time, the
value here is Null
, but this could change in future
revisions for expandability).public String toString()
toString
in class Object
Object.toString()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.