public static enum FakeRtsa.FunctionMapping1 extends java.lang.Enum<FakeRtsa.FunctionMapping1>
| Enum Constant and Description |
|---|
PASS
Passes the field on to the output.
|
RANDOM_BOOLEAN
Returns a random Boolean.
|
RANDOM_PROBABILITY
Returns a random number between 0 and 1.
|
SKIP
Skips the field, i.e., does not pass it on.
|
| Modifier and Type | Method and Description |
|---|---|
static FakeRtsa.FunctionMapping1 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FakeRtsa.FunctionMapping1[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FakeRtsa.FunctionMapping1 RANDOM_PROBABILITY
public static final FakeRtsa.FunctionMapping1 RANDOM_BOOLEAN
public static final FakeRtsa.FunctionMapping1 SKIP
public static final FakeRtsa.FunctionMapping1 PASS
public static FakeRtsa.FunctionMapping1[] values()
for (FakeRtsa.FunctionMapping1 c : FakeRtsa.FunctionMapping1.values()) System.out.println(c);
public static FakeRtsa.FunctionMapping1 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 nullCopyright © 2025. All rights reserved.