public enum BoardFilter extends Enum<BoardFilter>
Enum Constant and Description |
---|
ALL |
CLOSED |
MEMBERS |
OPEN |
ORGANIZATION |
PUBLIC |
STARRED |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BoardFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoardFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoardFilter ALL
public static final BoardFilter CLOSED
public static final BoardFilter MEMBERS
public static final BoardFilter OPEN
public static final BoardFilter ORGANIZATION
public static final BoardFilter PUBLIC
public static final BoardFilter STARRED
public static BoardFilter[] values()
for (BoardFilter c : BoardFilter.values()) System.out.println(c);
public static BoardFilter 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 toString()
toString
in class Enum<BoardFilter>
Copyright (c) 2006-2024 North Concepts Inc. All Rights Reserved.