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