public enum NTaskStatusFilter extends Enum<NTaskStatusFilter>
| Enum Constant and Description |
|---|
ALL |
CANCELLED |
CLOSED |
DONE |
OPEN |
RECENT |
TODO |
WIP |
| Modifier and Type | Method and Description |
|---|---|
static NTaskStatusFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NTaskStatusFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NTaskStatusFilter ALL
public static final NTaskStatusFilter RECENT
public static final NTaskStatusFilter OPEN
public static final NTaskStatusFilter CLOSED
public static final NTaskStatusFilter TODO
public static final NTaskStatusFilter WIP
public static final NTaskStatusFilter DONE
public static final NTaskStatusFilter CANCELLED
public static NTaskStatusFilter[] values()
for (NTaskStatusFilter c : NTaskStatusFilter.values()) System.out.println(c);
public static NTaskStatusFilter 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 © 2022 vpc open source initiative. All rights reserved.