Package org.apache.solr.common.params
Enum ConfigSetParams.ConfigSetAction
- java.lang.Object
- 
- java.lang.Enum<ConfigSetParams.ConfigSetAction>
- 
- org.apache.solr.common.params.ConfigSetParams.ConfigSetAction
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ConfigSetParams.ConfigSetAction>
 - Enclosing interface:
- ConfigSetParams
 
 public static enum ConfigSetParams.ConfigSetAction extends Enum<ConfigSetParams.ConfigSetAction> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigSetParams.ConfigSetActionget(String p)booleanisEqual(String s)StringtoLower()static ConfigSetParams.ConfigSetActionvalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigSetParams.ConfigSetAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CREATEpublic static final ConfigSetParams.ConfigSetAction CREATE 
 - 
UPLOADpublic static final ConfigSetParams.ConfigSetAction UPLOAD 
 - 
DELETEpublic static final ConfigSetParams.ConfigSetAction DELETE 
 - 
LISTpublic static final ConfigSetParams.ConfigSetAction LIST 
 
- 
 - 
Method Detail- 
valuespublic static ConfigSetParams.ConfigSetAction[] 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 (ConfigSetParams.ConfigSetAction c : ConfigSetParams.ConfigSetAction.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ConfigSetParams.ConfigSetAction 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 name
- NullPointerException- if the argument is null
 
 - 
getpublic static ConfigSetParams.ConfigSetAction get(String p) 
 - 
isEqualpublic boolean isEqual(String s) 
 - 
toLowerpublic String toLower() 
 
- 
 
-