public static enum XMLConverter.XMLConversionStatus extends Enum<XMLConverter.XMLConversionStatus>
| Enum Constant and Description |
|---|
ERROR
Conversões foram tentadas mas houve alguma falha no processo.
|
NOT_APPLIED
Nenhuma conversão foi aplicada.
|
NOT_NEEDED
Arquivo já correspondia à última versão do DTD.
|
SUCCESS
Conversões aplicadas com sucesso.
|
| Modifier and Type | Method and Description |
|---|---|
static XMLConverter.XMLConversionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLConverter.XMLConversionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLConverter.XMLConversionStatus NOT_APPLIED
public static final XMLConverter.XMLConversionStatus SUCCESS
public static final XMLConverter.XMLConversionStatus ERROR
public static final XMLConverter.XMLConversionStatus NOT_NEEDED
public static XMLConverter.XMLConversionStatus[] values()
for (XMLConverter.XMLConversionStatus c : XMLConverter.XMLConversionStatus.values()) System.out.println(c);
public static XMLConverter.XMLConversionStatus 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 © 2016 Tecgraf/PUC-Rio. All rights reserved.