public enum NegativeHandling extends Enum<NegativeHandling>
Enum Constant and Description |
---|
ABS |
ADD |
ONLY_NEGATIVE |
ONLY_POSITIVE |
Modifier and Type | Method and Description |
---|---|
static NegativeHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NegativeHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NegativeHandling ADD
public static final NegativeHandling ABS
public static final NegativeHandling ONLY_POSITIVE
public static final NegativeHandling ONLY_NEGATIVE
public static NegativeHandling[] values()
for (NegativeHandling c : NegativeHandling.values()) System.out.println(c);
public static NegativeHandling 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 © 2016 Eclipse NeoSCADA Project. All rights reserved.