public static enum ArtifactMessage.Severity extends Enum<ArtifactMessage.Severity>
| Enum Constant and Description | 
|---|
DEBUG
Debug message 
 | 
ERROR
Error message 
 | 
INFO
Information message 
 | 
TRACE
Trace message 
 | 
WARN
Warning message 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ArtifactMessage.Severity | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ArtifactMessage.Severity[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ArtifactMessage.Severity ERROR
public static final ArtifactMessage.Severity WARN
public static final ArtifactMessage.Severity INFO
public static final ArtifactMessage.Severity DEBUG
public static final ArtifactMessage.Severity TRACE
public static ArtifactMessage.Severity[] values()
for (ArtifactMessage.Severity c : ArtifactMessage.Severity.values()) System.out.println(c);
public static ArtifactMessage.Severity 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–2019 Cloud Software Group, Inc.. All rights reserved.