Enum AbstractResource.ContentRangeType
- java.lang.Object
-
- java.lang.Enum<AbstractResource.ContentRangeType>
-
- org.apache.wicket.request.resource.AbstractResource.ContentRangeType
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractResource.ContentRangeType>
- Enclosing class:
- AbstractResource
public static enum AbstractResource.ContentRangeType extends Enum<AbstractResource.ContentRangeType>
All available content range types. The type name represents the name used in header information.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTypeName()
static AbstractResource.ContentRangeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractResource.ContentRangeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BYTES
public static final AbstractResource.ContentRangeType BYTES
-
NONE
public static final AbstractResource.ContentRangeType NONE
-
-
Method Detail
-
values
public static AbstractResource.ContentRangeType[] 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 (AbstractResource.ContentRangeType c : AbstractResource.ContentRangeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractResource.ContentRangeType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getTypeName
public String getTypeName()
-
-