public static enum RuntimeWeaver.Mode extends Enum<RuntimeWeaver.Mode>
| Enum Constant and Description |
|---|
Discard |
FixedSize |
Frequency |
Network |
PerThread |
Stream |
Testing |
| Modifier and Type | Method and Description |
|---|---|
static RuntimeWeaver.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeWeaver.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeWeaver.Mode Stream
public static final RuntimeWeaver.Mode Frequency
public static final RuntimeWeaver.Mode FixedSize
public static final RuntimeWeaver.Mode Discard
public static final RuntimeWeaver.Mode Network
public static final RuntimeWeaver.Mode PerThread
public static final RuntimeWeaver.Mode Testing
public static RuntimeWeaver.Mode[] values()
for (RuntimeWeaver.Mode c : RuntimeWeaver.Mode.values()) System.out.println(c);
public static RuntimeWeaver.Mode 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 © 2023. All rights reserved.