COSObjectable
public class COSFloat extends COSNumber
Constructor | Description |
---|---|
COSFloat(float aFloat) |
Constructor.
|
COSFloat(java.lang.String aFloat) |
Constructor.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.Object |
accept(ICOSVisitor visitor) |
visitor pattern double dispatch method.
|
double |
doubleValue() |
The value of the double object that this one wraps.
|
boolean |
equals(java.lang.Object o) |
|
float |
floatValue() |
The value of the float object that this one wraps.
|
int |
hashCode() |
|
int |
intValue() |
This will get the integer value of this object.
|
long |
longValue() |
This will get the long value of this object.
|
java.lang.String |
toString() |
|
void |
writePDF(java.io.OutputStream output) |
This will output this string as a PDF object.
|
getCOSObject, isDirect, setDirect
public COSFloat(float aFloat)
aFloat
- The primitive float object that this object wraps.public COSFloat(java.lang.String aFloat) throws java.io.IOException
aFloat
- The primitive float object that this object wraps.java.io.IOException
- If aFloat is not a float.public float floatValue()
floatValue
in class COSNumber
public double doubleValue()
doubleValue
in class COSNumber
public long longValue()
public int intValue()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.Object accept(ICOSVisitor visitor) throws java.io.IOException
public void writePDF(java.io.OutputStream output) throws java.io.IOException
output
- The stream to write to.java.io.IOException
- If there is an error writing to the stream.Copyright © 2002–2018. All rights reserved.