public enum Blockable extends Enum<Blockable>
| Enum Constant and Description |
|---|
BLOCKABLE_AUTO |
BLOCKABLE_FORCE |
BLOCKABLE_NONE |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttribute() |
static Blockable |
getBlockableFromAttribute(String attribute) |
static Blockable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Blockable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Blockable BLOCKABLE_NONE
public static final Blockable BLOCKABLE_AUTO
public static final Blockable BLOCKABLE_FORCE
public static Blockable[] values()
for (Blockable c : Blockable.values()) System.out.println(c);
public static Blockable 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 nullpublic String getAttribute()
Copyright © 2001–2025. All rights reserved.