public enum LinkFilter extends Enum<LinkFilter>
| Enum Constant and Description |
|---|
ALL |
NEGATIVE |
NEGATIVE_UNKNOWN |
POSITIVE |
POSITIVE_NEGATIVE |
POSITIVE_UNKNOWN |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isViewNegative() |
boolean |
isViewPositive() |
boolean |
isViewUnknown() |
static LinkFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkFilter POSITIVE
public static final LinkFilter POSITIVE_NEGATIVE
public static final LinkFilter POSITIVE_UNKNOWN
public static final LinkFilter NEGATIVE
public static final LinkFilter NEGATIVE_UNKNOWN
public static final LinkFilter UNKNOWN
public static final LinkFilter ALL
public static LinkFilter[] values()
for (LinkFilter c : LinkFilter.values()) System.out.println(c);
public static LinkFilter 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 boolean isViewPositive()
public boolean isViewNegative()
public boolean isViewUnknown()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.