public enum CatchupStrategy extends Enum<CatchupStrategy>
| Enum Constant and Description |
|---|
PAGED |
| Modifier and Type | Method and Description |
|---|---|
static CatchupStrategy |
getDefault() |
static CatchupStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatchupStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatchupStrategy PAGED
public static CatchupStrategy[] values()
for (CatchupStrategy c : CatchupStrategy.values()) System.out.println(c);
public static CatchupStrategy 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 CatchupStrategy getDefault()
Copyright © 2018–2019 factcast. All rights reserved.