public enum ProcessingMode extends Enum<ProcessingMode>
Modifier and Type | Method and Description |
---|---|
static ProcessingMode |
findUpdatedProcessingMode(ProcessingMode currentProcessingMode,
ProcessingMode updatingProcessingMode) |
static ProcessingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingMode BATCH
public static final ProcessingMode SLIDE
public static final ProcessingMode HOP
public static final ProcessingMode GROUP
public static final ProcessingMode RESET
public static ProcessingMode[] values()
for (ProcessingMode c : ProcessingMode.values()) System.out.println(c);
public static ProcessingMode 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 nullpublic static ProcessingMode findUpdatedProcessingMode(ProcessingMode currentProcessingMode, ProcessingMode updatingProcessingMode)
Copyright © 2021. All rights reserved.