public enum FileParameterPipeAcceptance extends Enum<FileParameterPipeAcceptance>
| Enum Constant and Description |
|---|
ALWAYS
Indica que o parâmetro *só* pode usar pipe (não aceita arquivos)
|
FALSE
Indica que o parâmetro não pode usar pipe
|
TRUE
Indica que o parâmetro pode usar pipe
|
| Modifier and Type | Method and Description |
|---|---|
static FileParameterPipeAcceptance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileParameterPipeAcceptance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileParameterPipeAcceptance TRUE
public static final FileParameterPipeAcceptance FALSE
public static final FileParameterPipeAcceptance ALWAYS
public static FileParameterPipeAcceptance[] values()
for (FileParameterPipeAcceptance c : FileParameterPipeAcceptance.values()) System.out.println(c);
public static FileParameterPipeAcceptance 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 © 2021. All rights reserved.