public enum ScanMode extends Enum<ScanMode>
| Enum Constant and Description |
|---|
ALL
Scan complete data files of a snapshot.
|
CHANGELOG
Only scan changelog files of a snapshot.
|
DELTA
Only scan newly changed files of a snapshot.
|
| Modifier and Type | Method and Description |
|---|---|
static ScanMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanMode ALL
public static final ScanMode DELTA
public static final ScanMode CHANGELOG
public static ScanMode[] values()
for (ScanMode c : ScanMode.values()) System.out.println(c);
public static ScanMode 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–2024 The Apache Software Foundation. All rights reserved.