public static enum DocumentRequest.Scope extends Enum<DocumentRequest.Scope>
| Enum Constant and Description |
|---|
ALL |
CONTENTS |
MYDOCUMENTS |
RECENTDOCUMENTS |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static DocumentRequest.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentRequest.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentRequest.Scope ALL
public static final DocumentRequest.Scope CONTENTS
public static final DocumentRequest.Scope MYDOCUMENTS
public static final DocumentRequest.Scope RECENTDOCUMENTS
public static DocumentRequest.Scope[] values()
for (DocumentRequest.Scope c : DocumentRequest.Scope.values()) System.out.println(c);
public static DocumentRequest.Scope 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 getValue()
Copyright © 2024. All rights reserved.