java.io.Serializable, java.lang.Comparable<JournalEntry.JournalAttrib>public static enum JournalEntry.JournalAttrib extends java.lang.Enum<JournalEntry.JournalAttrib>
| Enum Constant | Description | 
|---|---|
| ATTACHMENT | Flagging this entry as having one or more attachments | 
| PROTECTED | Flagging this entry as stuck to the top | 
| STUCKY | Flagging this entry as protected from auto-purging | 
| Modifier and Type | Field | Description | 
|---|---|---|
| long | bit | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static JournalEntry.JournalAttrib | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static JournalEntry.JournalAttrib[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final JournalEntry.JournalAttrib PROTECTED
public static final JournalEntry.JournalAttrib STUCKY
public static final JournalEntry.JournalAttrib ATTACHMENT
public static JournalEntry.JournalAttrib[] values()
for (JournalEntry.JournalAttrib c : JournalEntry.JournalAttrib.values()) System.out.println(c);
public static JournalEntry.JournalAttrib valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null