edu.isi.pegasus.planner.invocation
public class Uname extends MachineInfo implements HasText
Modifier and Type | Field and Description |
---|---|
static String |
ARCHMODE_ATTRIBUTE_KEY
The archmode attribute for the uname
|
static String |
ELEMENT_NAME
The element name
|
static String |
MACHINE_ATTRIBUTE_KEY
The release attribute for the uname
|
private StringBuffer |
mValue
The text value
|
static String |
NODENAME_ATTRIBUTE_KEY
The nodename attribute for the uname
|
static String |
RELEASE_ATTRIBUTE_KEY
The release attribute for the uname
|
static String |
SYSTEM_ATTRIBUTE_KEY
The system attribute for the uname
|
static String |
UNDEFINED_ARCHMODE_VALUE
The undefined value for archmode attribute.
|
mAttributeMap
Constructor and Description |
---|
Uname()
The default constructor
|
Uname(String value)
Constructs a piece of data.
|
Modifier and Type | Method and Description |
---|---|
void |
appendValue(String fragment)
Appends a piece of text to the existing text.
|
String |
getElementName()
Returns the name of the xml element corresponding to the object.
|
String |
getValue()
Accessor
|
void |
setValue(String value)
Accessor.
|
Architecture |
toArchitecture()
An adapter method to convert the uname object to the architecture object.
|
static Architecture |
unameToArchitecture(Uname uname)
An adapter method to convert the uname object to the architecture object.
|
addAttribute, addAttributes, get, getAttributeKeysIterator, toString, toXML
public static final String ELEMENT_NAME
public static final String SYSTEM_ATTRIBUTE_KEY
public static final String NODENAME_ATTRIBUTE_KEY
public static final String RELEASE_ATTRIBUTE_KEY
public static final String MACHINE_ATTRIBUTE_KEY
public static final String ARCHMODE_ATTRIBUTE_KEY
public static final String UNDEFINED_ARCHMODE_VALUE
private StringBuffer mValue
public Uname()
public Uname(String value)
value
- is the data to remember. The string may be empty,
but it must not be null
.NullPointerException
- if the argument was null.public static Architecture unameToArchitecture(Uname uname)
uname
- the object to be convertedArchitecture
objectpublic String getElementName()
getElementName
in class MachineInfo
public void appendValue(String fragment)
appendValue
in interface HasText
fragment
- is a piece of text to append to existing text.
Appending null
is a noop.public String getValue()
getValue
in interface HasText
setValue(String)
public void setValue(String value)
setValue
in interface HasText
value
- is the new value to set.getValue()
public Architecture toArchitecture()
Architecture
object