public enum NoteModificationStatus extends Enum<NoteModificationStatus>
Enum Constant and Description |
---|
CROSSPOST_ERROR
Note creation / modification failed because some of the cross posting blogs do not exist or
are not writable.
|
LIMIT_REACHED
Note creation failed because the note limit was reached.
|
MISSING_ATTACHMENT
Denotes, that one of the attachments isn't available anymore.
|
NOTIFICATION_ERROR
Note creation / modification failed because some users to be notified do not exist or have no
read access to the blog.
|
SUCCESS
Note creation / modification was successful but there might be some warnings.
|
SYSTEM_ERROR
Note creation / modification failed because of some internal error.
|
Modifier and Type | Method and Description |
---|---|
static NoteModificationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoteModificationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoteModificationStatus SUCCESS
public static final NoteModificationStatus LIMIT_REACHED
public static final NoteModificationStatus NOTIFICATION_ERROR
public static final NoteModificationStatus CROSSPOST_ERROR
public static final NoteModificationStatus SYSTEM_ERROR
public static final NoteModificationStatus MISSING_ATTACHMENT
public static NoteModificationStatus[] values()
for (NoteModificationStatus c : NoteModificationStatus.values()) System.out.println(c);
public static NoteModificationStatus 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 Communote team. All rights reserved.