public enum StrategicModelMissingValueOption extends java.lang.Enum<StrategicModelMissingValueOption>
| Enum Constant and Description |
|---|
IGNORE
Ignores the missing value during the import.
|
INPUT_ZERO
The missing value will be imported as zero to the input cell.
|
NAN
The missing value will be imported as NAN.
|
ZERO
The missing value will be imported as zero to the output cell.
|
| Modifier and Type | Method and Description |
|---|---|
static StrategicModelMissingValueOption |
fromString(java.lang.String displayName)
Returns an instance of the enum with the specified display name.
|
java.lang.String |
getDisplayName()
Returns the display name of this enum constant, exactly as declared in
its enum declaration.
|
java.lang.String |
toString()
Returns the display name of this enum constant, as contained in the
declaration.
|
static StrategicModelMissingValueOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StrategicModelMissingValueOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StrategicModelMissingValueOption IGNORE
public static final StrategicModelMissingValueOption INPUT_ZERO
public static final StrategicModelMissingValueOption NAN
public static final StrategicModelMissingValueOption ZERO
public static StrategicModelMissingValueOption fromString(java.lang.String displayName)
displayName - user friendly namepublic java.lang.String getDisplayName()
public java.lang.String toString()
toString in class java.lang.Enum<StrategicModelMissingValueOption>public static StrategicModelMissingValueOption 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 StrategicModelMissingValueOption[] values()
for (StrategicModelMissingValueOption c : StrategicModelMissingValueOption.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.