public static enum CustomCalcParameters.DataLoadOption extends java.lang.Enum<CustomCalcParameters.DataLoadOption>
Enum Constant and Description |
---|
ADD_DATA
Add new values to the existing values.
|
STORE_DATA
Replace existing values with the new values.
|
SUBTRACT_DATA
Subtract new values from the existing values.
|
Modifier and Type | Method and Description |
---|---|
long |
getValue() |
static CustomCalcParameters.DataLoadOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomCalcParameters.DataLoadOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomCalcParameters.DataLoadOption ADD_DATA
public static final CustomCalcParameters.DataLoadOption STORE_DATA
public static final CustomCalcParameters.DataLoadOption SUBTRACT_DATA
public long getValue()
public static CustomCalcParameters.DataLoadOption valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CustomCalcParameters.DataLoadOption[] values()
for (CustomCalcParameters.DataLoadOption c : CustomCalcParameters.DataLoadOption.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.