public static enum Search.Status extends Enum<Search.Status>
| Enum Constant and Description |
|---|
LOADING |
NO_CONTENT |
OK |
| Modifier and Type | Method and Description |
|---|---|
String |
getDefaultMessage() |
static Search.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Search.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Search.Status NO_CONTENT
public static final Search.Status LOADING
public static final Search.Status OK
public static Search.Status[] values()
for (Search.Status c : Search.Status.values()) System.out.println(c);
public static Search.Status 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 getDefaultMessage()
Copyright © 2023 jUPnP.org. All rights reserved.