public static enum Node.FiltrageMode extends Enum<Node.FiltrageMode>
| Enum Constant and Description |
|---|
EVALUATE
Avalie: utilize o algoritmo padrão (
Filter.isAccepted(Node)) para
decidir se o nó será aceito ou rejeitado. |
IGNORE
Ignore: não utiliza o filtro para decidir se o nó será aceito ou
rejeitado.
|
| Modifier and Type | Method and Description |
|---|---|
static Node.FiltrageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Node.FiltrageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.FiltrageMode EVALUATE
Filter.isAccepted(Node)) para
decidir se o nó será aceito ou rejeitado.public static final Node.FiltrageMode IGNORE
public static Node.FiltrageMode[] values()
for (Node.FiltrageMode c : Node.FiltrageMode.values()) System.out.println(c);
public static Node.FiltrageMode 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 © 2017 Tecgraf/PUC-Rio. All rights reserved.