public enum ConflictStatus extends Enum<ConflictStatus>
| Enum Constant and Description |
|---|
DEP_CONFLICT |
DUPNAME |
EXISTED |
PASSED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isConflicted() |
static ConflictStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConflictStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictStatus PASSED
public static final ConflictStatus EXISTED
public static final ConflictStatus DEP_CONFLICT
public static final ConflictStatus DUPNAME
public static ConflictStatus[] values()
for (ConflictStatus c : ConflictStatus.values()) System.out.println(c);
public static ConflictStatus 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 boolean isConflicted()
Copyright © 2024 The Apache Software Foundation. All rights reserved.