public enum ApiDocumentFilter extends Enum<ApiDocumentFilter>
Enum Constant and Description |
---|
ABOUT_TO_EXPIRE
not supported
|
ALL
All
|
HIDDEN
Hidden
|
RECENTLY_MODIFIED
Recently modified
|
RECENTLY_VIEWED
not supported
|
SHARED_BY_ME
Shared by me
|
SHARED_WITH_ME
Shared with me
|
VALID_ONLY
Valid only
|
Modifier and Type | Method and Description |
---|---|
static ApiDocumentFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiDocumentFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiDocumentFilter ALL
public static final ApiDocumentFilter RECENTLY_MODIFIED
public static final ApiDocumentFilter SHARED_WITH_ME
public static final ApiDocumentFilter ABOUT_TO_EXPIRE
public static final ApiDocumentFilter SHARED_BY_ME
public static final ApiDocumentFilter RECENTLY_VIEWED
public static final ApiDocumentFilter HIDDEN
public static final ApiDocumentFilter VALID_ONLY
public static ApiDocumentFilter[] values()
for (ApiDocumentFilter c : ApiDocumentFilter.values()) System.out.println(c);
public static ApiDocumentFilter 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 © 2019. All rights reserved.