public abstract class Ignore
extends java.lang.Object
Functions intended to help avoid spurious code scan warnings. Hopefully any calls to them will be eliminated by the target compiler.
Constructor and Description |
---|
Ignore() |
Modifier and Type | Method and Description |
---|---|
static void |
valueOf_any(java.lang.Object value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_binary(byte[] value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_boolean(boolean value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_byte(byte value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_char(char value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_decimal(java.math.BigDecimal value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_double(double value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_error(java.lang.RuntimeException value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_float(float value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_int(int value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_integer(java.math.BigInteger value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_long(long value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableBinary(byte[] value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableBoolean(java.lang.Boolean value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableByte(java.lang.Byte value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableChar(java.lang.Character value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableDecimal(java.math.BigDecimal value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableDouble(java.lang.Double value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableFloat(java.lang.Float value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableInt(java.lang.Integer value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableInteger(java.math.BigInteger value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableLong(java.lang.Long value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableShort(java.lang.Short value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_nullableString(java.lang.String value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_short(short value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
static void |
valueOf_string(java.lang.String value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
|
public static void valueOf_any(java.lang.Object value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_binary(byte[] value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_boolean(boolean value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_byte(byte value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_char(char value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_decimal(java.math.BigDecimal value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_double(double value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_error(java.lang.RuntimeException value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_float(float value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_int(int value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_integer(java.math.BigInteger value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_long(long value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_nullableBinary(byte[] value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableBoolean(java.lang.Boolean value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableByte(java.lang.Byte value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableChar(java.lang.Character value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableDecimal(java.math.BigDecimal value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableDouble(java.lang.Double value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableFloat(java.lang.Float value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableInt(java.lang.Integer value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableInteger(java.math.BigInteger value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableLong(java.lang.Long value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableShort(java.lang.Short value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_nullableString(java.lang.String value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- (nullable) Will be ignored.public static void valueOf_short(short value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.public static void valueOf_string(java.lang.String value)
Call this function when you are marking intentional ignoring of a value, and you want to avoid compiler errors.
value
- Will be ignored.