public enum EESpecProfiles extends Enum<EESpecProfiles> implements EESpecProfile
| Enum Constant and Description |
|---|
EE
Specification profile for the full EE.
|
JEE8
Specification profile for the full EE, to convert from Jakarta to EE 8.
|
TOMCAT
Specification profile matching the packages provided with Tomcat.
|
| Modifier and Type | Method and Description |
|---|---|
Pattern |
getPattern()
The pattern used for conversion.
|
String |
getSource()
The source namespace.
|
String |
getTarget()
The target namespace.
|
static EESpecProfiles |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EESpecProfiles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfconvertpublic static final EESpecProfiles TOMCAT
public static final EESpecProfiles EE
public static final EESpecProfiles JEE8
public static EESpecProfiles[] values()
for (EESpecProfiles c : EESpecProfiles.values()) System.out.println(c);
public static EESpecProfiles 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 String getSource()
EESpecProfilegetSource in interface EESpecProfilepublic String getTarget()
EESpecProfilegetTarget in interface EESpecProfilepublic Pattern getPattern()
EESpecProfilegetPattern in interface EESpecProfileCopyright © 2020–2022 The Apache Software Foundation. All rights reserved.