public enum EarVersion extends java.lang.Enum<EarVersion>
| Enum Constant | Description |
|---|---|
APP_1_3 |
|
APP_1_4 |
|
APP_5_0 |
|
APP_6_0 |
|
APP_7_0 |
|
UNKNOWN |
| Modifier and Type | Method | Description |
|---|---|---|
static EarVersion |
forLocation(java.lang.String location) |
|
JavaEEVersion |
getJavaEEVersion() |
|
java.lang.String |
getVersion() |
|
static EarVersion |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EarVersion[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EarVersion UNKNOWN
public static final EarVersion APP_1_3
public static final EarVersion APP_1_4
public static final EarVersion APP_5_0
public static final EarVersion APP_6_0
public static final EarVersion APP_7_0
public static EarVersion[] values()
for (EarVersion c : EarVersion.values()) System.out.println(c);
public static EarVersion valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getVersion()
public JavaEEVersion getJavaEEVersion()
public static EarVersion forLocation(java.lang.String location)
Copyright © 2018 JBoss by Red Hat. All rights reserved.