public enum ApplicationParameters extends Enum<ApplicationParameters>
| Enum Constant and Description |
|---|
APP_NAME_PROPERTY
Identificador da chave de propriedade: nome do programa
|
AUTHOR_MAIL_PROPERTY
Identificador da chave de propriedade: Email de contato do autor
|
AUTHOR_NAME_PROPERTY
Identificador da chave de propriedade: Nome do autor
|
CLASS_NAME_PROPERTY
Identificador da chave de propriedade: classe (Java) do programa
|
CLASSPATH_PROPERTY
Identificador da chave de propriedade: classpath da aplicação.
|
DESCRIPTION_PROPERTY
Identificador da chave de propriedade: descrição do programa
|
FILE_TYPES_PROPERTY
Identificador da chave de propriedade: tipos de arquivos tratados
|
IS_SINGLETON_PROPERTY
Identificador da chave de propriedade: singleton
|
NEED_BUNDLE_PROPERTY
Identificador da chave de propriedade: Flag de necessidade de bundle.
|
REQUIRE_PROJECT_PROPERTY
Identificador da chave de propriedade: Flag de uso de prjetos.
|
VERSION_PROPERTY
Identificador da chave de propriedade: Código da versão
|
| Modifier and Type | Method and Description |
|---|---|
String |
getApplicationPropertyName(String id)
Obtém o nome da propriedade formatado para a aplicação especificada.
|
static ApplicationParameters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationParameters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationParameters APP_NAME_PROPERTY
public static final ApplicationParameters CLASS_NAME_PROPERTY
public static final ApplicationParameters NEED_BUNDLE_PROPERTY
public static final ApplicationParameters VERSION_PROPERTY
public static final ApplicationParameters DESCRIPTION_PROPERTY
public static final ApplicationParameters REQUIRE_PROJECT_PROPERTY
public static final ApplicationParameters AUTHOR_NAME_PROPERTY
public static final ApplicationParameters AUTHOR_MAIL_PROPERTY
public static final ApplicationParameters IS_SINGLETON_PROPERTY
public static final ApplicationParameters FILE_TYPES_PROPERTY
public static final ApplicationParameters CLASSPATH_PROPERTY
public static ApplicationParameters[] values()
for (ApplicationParameters c : ApplicationParameters.values()) System.out.println(c);
public static ApplicationParameters 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.