public enum FiniteFilterType extends Enum<FiniteFilterType>
| Enum Constant and Description |
|---|
FINITE
Accept only finite values
|
FINITE_AND_INFINITE
Accept finite and infinite values
|
FINITE_AND_NAN
Accept finite and Not a Number values
|
| Modifier and Type | Method and Description |
|---|---|
static FiniteFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FiniteFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FiniteFilterType FINITE
public static final FiniteFilterType FINITE_AND_INFINITE
public static final FiniteFilterType FINITE_AND_NAN
public static FiniteFilterType[] values()
for (FiniteFilterType c : FiniteFilterType.values()) System.out.println(c);
public static FiniteFilterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 National Geospatial-Intelligence Agency. All rights reserved.