jxl.biff.formula
Class StringValue
java.lang.Object
|
+--jxl.biff.formula.ParseItem
|
+--jxl.biff.formula.Operand
|
+--jxl.biff.formula.StringValue
- All Implemented Interfaces:
- ParsedThing
- class StringValue
- extends Operand
- implements ParsedThing
A string constant operand in a formula
Method Summary |
(package private) byte[] |
getBytes()
Gets the token representation of this item in RPN |
void |
getString(java.lang.StringBuffer buf)
Abstract method implementation to get the string equivalent of this
token |
int |
read(byte[] data,
int pos)
Reads the ptg data from the array starting at the specified position |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait |
value
private java.lang.String value
- The string value
settings
private WorkbookSettings settings
- The workbook settings
StringValue
public StringValue(WorkbookSettings ws)
- Constructor
StringValue
public StringValue(java.lang.String s)
- Constructor used when parsing a string formula
- Parameters:
s
- the string token, including quote marks
read
public int read(byte[] data,
int pos)
- Reads the ptg data from the array starting at the specified position
- Specified by:
read
in interface ParsedThing
- Parameters:
data
- the RPN arraypos
- the current position in the array, excluding the ptg identifier- Returns:
- the number of bytes read
getBytes
byte[] getBytes()
- Gets the token representation of this item in RPN
- Overrides:
getBytes
in class ParseItem
- Returns:
- the bytes applicable to this formula
getString
public void getString(java.lang.StringBuffer buf)
- Abstract method implementation to get the string equivalent of this
token
- Overrides:
getString
in class ParseItem
- Parameters:
buf
- the string to append to