Package org.ojalgo.netio
Enum ResourceLocator.Method
- java.lang.Object
-
- java.lang.Enum<ResourceLocator.Method>
-
- org.ojalgo.netio.ResourceLocator.Method
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResourceLocator.Method>
- Enclosing class:
- ResourceLocator
public static enum ResourceLocator.Method extends java.lang.Enum<ResourceLocator.Method>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Method()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceLocator.Method
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResourceLocator.Method[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELETE
public static final ResourceLocator.Method DELETE
-
GET
public static final ResourceLocator.Method GET
-
HEAD
public static final ResourceLocator.Method HEAD
-
OPTIONS
public static final ResourceLocator.Method OPTIONS
-
POST
public static final ResourceLocator.Method POST
-
PUT
public static final ResourceLocator.Method PUT
-
TRACE
public static final ResourceLocator.Method TRACE
-
-
Method Detail
-
values
public static ResourceLocator.Method[] 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 (ResourceLocator.Method c : ResourceLocator.Method.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceLocator.Method 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
-
-