ConditionalFormattingValue

Inheritance: java.lang.Object

public class ConditionalFormattingValue

Describes the values of the interpolation points in a gradient scale, dataBar or iconSet.

Methods

MethodDescription
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:

ParameterTypeDescription
arg0java.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.

See FormatConditionValueType.

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:

ParameterTypeDescription
valueboolean

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.

See FormatConditionValueType.

Parameters:

ParameterTypeDescription
valueint

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:

ParameterTypeDescription
valuejava.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:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int