Methods Summary |
---|
public java.lang.Object | clone()Implementation of clone method from Object
return new GreaterThanPtg();
|
public byte | getDefaultOperandClass()Get the default operands class value
return Ptg.CLASS_VALUE;
|
public int | getNumberOfOperands()Get the number of operands for the Less than operator
return 2;
|
public int | getSize()Get the size of the sid
return SIZE;
|
public int | getType()Get the type of PTG for Greater Than
return TYPE_BINARY;
|
public java.lang.String | toFormulaString(org.apache.poi.hssf.model.Workbook book)Implementation of method from Ptg
return this.GREATERTHAN;
|
public java.lang.String | toFormulaString(java.lang.String[] operands)Implementation of method from OperationsPtg
StringBuffer buffer = new StringBuffer();
buffer.append(operands[ 0 ]);
buffer.append(this.GREATERTHAN);
buffer.append(operands[ 1 ]);
return buffer.toString();
|
public void | writeBytes(byte[] array, int offset)Write the sid to an array
array[ offset + 0 ] = sid;
|