public class EDIFPropertyValue
extends Object
Constructor and Description |
---|
EDIFPropertyValue() |
EDIFPropertyValue(EDIFPropertyValue propValue) |
EDIFPropertyValue(String value,
EDIFValueType type) |
EDIFPropertyValue(String value,
EDIFValueType type,
String owner) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
boolean |
getBooleanValue() |
Integer |
getIntValue()
In situations where the type is an integer, this method will parse the verilog-syntax
integer format to get an integer value and return it.
|
Long |
getLongValue()
In situations where the type is an integer, this method will parse the verilog-syntax
integer format to get a long value and return it.
|
String |
getOwner() |
EDIFValueType |
getType() |
String |
getValue() |
int |
hashCode() |
static void |
main(String[] args) |
void |
setOwner(String owner) |
void |
setType(EDIFValueType type) |
void |
setValue(String value) |
String |
toString() |
void |
writeEDIFString(OutputStream os) |
public EDIFPropertyValue()
public EDIFPropertyValue(String value, EDIFValueType type, String owner)
public EDIFPropertyValue(String value, EDIFValueType type)
public EDIFPropertyValue(EDIFPropertyValue propValue)
public EDIFValueType getType()
public void setType(EDIFValueType type)
type
- the type to setpublic String getValue()
public Integer getIntValue()
public Long getLongValue()
public boolean getBooleanValue()
public void setValue(String value)
value
- the value to setpublic void writeEDIFString(OutputStream os) throws IOException
IOException
public String toString()
toString
in class Object
public static void main(String[] args)
public String getOwner()
public void setOwner(String owner)
public boolean equals(Object obj)
equals
in class Object
public int hashCode()
hashCode
in class Object