public enum GetDocumentsMode extends Enum<GetDocumentsMode> implements INumberEnum<Integer>
Enum Constant and Description |
---|
APPLY_FOLDER_ADDS
Apply folder ops directly - don't bother using callback
|
CONTINUE_ON_ERROR
Continue to next on list if error encountered
|
GET_FOLDER_ADDS
Enable folder-add callback function after the note-level callback
|
NO_STREAMING
Don't stream - used primarily for testing purposes
|
ORDER_BY_SIZE
Order returned notes by (approximate) ascending size
|
PRESERVE_ORDER
Preserve order of notes in NoteID list
|
SEND_OBJECTS
Send (copiable) objects along with note
|
Modifier and Type | Method and Description |
---|---|
long |
getLongValue() |
Integer |
getValue() |
static GetDocumentsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GetDocumentsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GetDocumentsMode PRESERVE_ORDER
public static final GetDocumentsMode SEND_OBJECTS
public static final GetDocumentsMode ORDER_BY_SIZE
public static final GetDocumentsMode CONTINUE_ON_ERROR
public static final GetDocumentsMode GET_FOLDER_ADDS
public static final GetDocumentsMode APPLY_FOLDER_ADDS
public static final GetDocumentsMode NO_STREAMING
public static GetDocumentsMode[] values()
for (GetDocumentsMode c : GetDocumentsMode.values()) System.out.println(c);
public static GetDocumentsMode 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 Integer getValue()
getValue
in interface INumberEnum<Integer>
public long getLongValue()
getLongValue
in interface INumberEnum<Integer>
long
Copyright © 2019–2021 HCL. All rights reserved.