public static enum AbstractXmlMojo.CatalogHandling extends Enum<AbstractXmlMojo.CatalogHandling>
Enum Constant and Description |
---|
local
Unmatched entities are resolved through file only URI resolution
|
passThrough
Unmatched entities are resolved through URI resolution
|
strict
Unmatched entities generate an error
|
Modifier and Type | Method and Description |
---|---|
static AbstractXmlMojo.CatalogHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractXmlMojo.CatalogHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractXmlMojo.CatalogHandling passThrough
public static final AbstractXmlMojo.CatalogHandling local
public static final AbstractXmlMojo.CatalogHandling strict
public static AbstractXmlMojo.CatalogHandling[] values()
for (AbstractXmlMojo.CatalogHandling c : AbstractXmlMojo.CatalogHandling.values()) System.out.println(c);
public static AbstractXmlMojo.CatalogHandling 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 © 2006–2024 The Apache Software Foundation. All rights reserved.