Package org.restlet.ext.atom.internal
Enum EntryContentReader.State
- java.lang.Object
-
- java.lang.Enum<EntryContentReader.State>
-
- org.restlet.ext.atom.internal.EntryContentReader.State
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EntryContentReader.State>
- Enclosing class:
- EntryContentReader
private static enum EntryContentReader.State extends java.lang.Enum<EntryContentReader.State>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description privateState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntryContentReader.StatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EntryContentReader.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FEED_ENTRY
public static final EntryContentReader.State FEED_ENTRY
-
FEED_ENTRY_AUTHOR
public static final EntryContentReader.State FEED_ENTRY_AUTHOR
-
FEED_ENTRY_AUTHOR_EMAIL
public static final EntryContentReader.State FEED_ENTRY_AUTHOR_EMAIL
-
FEED_ENTRY_AUTHOR_NAME
public static final EntryContentReader.State FEED_ENTRY_AUTHOR_NAME
-
FEED_ENTRY_AUTHOR_URI
public static final EntryContentReader.State FEED_ENTRY_AUTHOR_URI
-
FEED_ENTRY_CATEGORY
public static final EntryContentReader.State FEED_ENTRY_CATEGORY
-
FEED_ENTRY_CONTENT
public static final EntryContentReader.State FEED_ENTRY_CONTENT
-
FEED_ENTRY_CONTRIBUTOR
public static final EntryContentReader.State FEED_ENTRY_CONTRIBUTOR
-
FEED_ENTRY_ID
public static final EntryContentReader.State FEED_ENTRY_ID
-
FEED_ENTRY_LINK
public static final EntryContentReader.State FEED_ENTRY_LINK
-
FEED_ENTRY_PUBLISHED
public static final EntryContentReader.State FEED_ENTRY_PUBLISHED
-
FEED_ENTRY_RIGHTS
public static final EntryContentReader.State FEED_ENTRY_RIGHTS
-
FEED_ENTRY_SOURCE
public static final EntryContentReader.State FEED_ENTRY_SOURCE
-
FEED_ENTRY_SOURCE_AUTHOR
public static final EntryContentReader.State FEED_ENTRY_SOURCE_AUTHOR
-
FEED_ENTRY_SOURCE_AUTHOR_EMAIL
public static final EntryContentReader.State FEED_ENTRY_SOURCE_AUTHOR_EMAIL
-
FEED_ENTRY_SOURCE_AUTHOR_NAME
public static final EntryContentReader.State FEED_ENTRY_SOURCE_AUTHOR_NAME
-
FEED_ENTRY_SOURCE_AUTHOR_URI
public static final EntryContentReader.State FEED_ENTRY_SOURCE_AUTHOR_URI
-
FEED_ENTRY_SOURCE_CATEGORY
public static final EntryContentReader.State FEED_ENTRY_SOURCE_CATEGORY
-
FEED_ENTRY_SOURCE_CONTRIBUTOR
public static final EntryContentReader.State FEED_ENTRY_SOURCE_CONTRIBUTOR
-
FEED_ENTRY_SOURCE_GENERATOR
public static final EntryContentReader.State FEED_ENTRY_SOURCE_GENERATOR
-
FEED_ENTRY_SOURCE_ICON
public static final EntryContentReader.State FEED_ENTRY_SOURCE_ICON
-
FEED_ENTRY_SOURCE_ID
public static final EntryContentReader.State FEED_ENTRY_SOURCE_ID
-
FEED_ENTRY_SOURCE_LINK
public static final EntryContentReader.State FEED_ENTRY_SOURCE_LINK
-
FEED_ENTRY_SOURCE_LOGO
public static final EntryContentReader.State FEED_ENTRY_SOURCE_LOGO
-
FEED_ENTRY_SOURCE_RIGHTS
public static final EntryContentReader.State FEED_ENTRY_SOURCE_RIGHTS
-
FEED_ENTRY_SOURCE_SUBTITLE
public static final EntryContentReader.State FEED_ENTRY_SOURCE_SUBTITLE
-
FEED_ENTRY_SOURCE_TITLE
public static final EntryContentReader.State FEED_ENTRY_SOURCE_TITLE
-
FEED_ENTRY_SOURCE_UPDATED
public static final EntryContentReader.State FEED_ENTRY_SOURCE_UPDATED
-
FEED_ENTRY_SUMMARY
public static final EntryContentReader.State FEED_ENTRY_SUMMARY
-
FEED_ENTRY_TITLE
public static final EntryContentReader.State FEED_ENTRY_TITLE
-
FEED_ENTRY_UPDATED
public static final EntryContentReader.State FEED_ENTRY_UPDATED
-
NONE
public static final EntryContentReader.State NONE
-
-
Method Detail
-
values
public static EntryContentReader.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntryContentReader.State c : EntryContentReader.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntryContentReader.State valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-