ConditionalFormattingValue
Inheritance: java.lang.Object
public class ConditionalFormattingValue
Describes the values of the interpolation points in a gradient scale, dataBar or iconSet.
Methods
Method | Description |
---|---|
equals(Object arg0) | |
getClass() | |
getType() | Gets the type of this conditional formatting value object. |
getValue() | Gets the value of this conditional formatting value object. |
hashCode() | |
isGTE() | Gets the Greater Than Or Equal flag. |
notify() | |
notifyAll() | |
setGTE(boolean value) | Sets the Greater Than Or Equal flag. |
setType(int value) | Sets the type of this conditional formatting value object. |
setValue(Object value) | Sets the value of this conditional formatting value object. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getType()
public int getType()
Gets the type of this conditional formatting value object. Setting the type to FormatConditionValueType.Min or FormatConditionValueType.Max will auto set “Value” to null.
Returns: int
getValue()
public Object getValue()
Gets the value of this conditional formatting value object. It should be used in conjunction with Type.
Remarks
If the value is string and start with “=”, it will be processed as a formula, otherwise we will process it as a simple value.
Returns: java.lang.Object
hashCode()
public native int hashCode()
Returns: int
isGTE()
public boolean isGTE()
Gets the Greater Than Or Equal flag. Use only for icon sets, determines whether this threshold value uses the greater than or equal to operator. ‘false’ indicates ‘greater than’ is used instead of ‘greater than or equal to’. Default value is true.
Returns: boolean
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setGTE(boolean value)
public void setGTE(boolean value)
Sets the Greater Than Or Equal flag. Use only for icon sets, determines whether this threshold value uses the greater than or equal to operator. ‘false’ indicates ‘greater than’ is used instead of ‘greater than or equal to’. Default value is true.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setType(int value)
public void setType(int value)
Sets the type of this conditional formatting value object. Setting the type to FormatConditionValueType.Min or FormatConditionValueType.Max will auto set “Value” to null.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setValue(Object value)
public void setValue(Object value)
Sets the value of this conditional formatting value object. It should be used in conjunction with Type.
Remarks
If the value is string and start with “=”, it will be processed as a formula, otherwise we will process it as a simple value.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.Object |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |