protected static enum BasicDecider.FILE_STATUS extends Enum<BasicDecider.FILE_STATUS>
Enum Constant and Description |
---|
DISJOINT_SETS
Two sets of files have no relationship
|
PAST_SUBSET_OR_INTERSECTION
Two sets of files partially overlap i.e.
|
PAST_SUPERSET
The set of files in the past was strictly larger than the current files under consideration
|
SAME_FILES
the same files are found at the same paths
|
Modifier and Type | Method and Description |
---|---|
static BasicDecider.FILE_STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicDecider.FILE_STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicDecider.FILE_STATUS DISJOINT_SETS
public static final BasicDecider.FILE_STATUS PAST_SUBSET_OR_INTERSECTION
public static final BasicDecider.FILE_STATUS SAME_FILES
public static final BasicDecider.FILE_STATUS PAST_SUPERSET
public static BasicDecider.FILE_STATUS[] values()
for (BasicDecider.FILE_STATUS c : BasicDecider.FILE_STATUS.values()) System.out.println(c);
public static BasicDecider.FILE_STATUS 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 © 2015 SeqWare. All rights reserved.