public static enum Dependency.Flag extends Enum<Dependency.Flag>
Enum Constant and Description |
---|
FIXED
Indicates that a dependency is immune to rewriting.
|
Modifier and Type | Method and Description |
---|---|
static EnumSet<Dependency.Flag> |
emptySet() |
static Dependency.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dependency.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dependency.Flag FIXED
public static Dependency.Flag[] values()
for (Dependency.Flag c : Dependency.Flag.values()) System.out.println(c);
public static Dependency.Flag 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 EnumSet<Dependency.Flag> emptySet()
Copyright © 2016 GroupLens Research. All rights reserved.