Package net.shibboleth.idp.plugin
Enum PluginSupport.SupportLevel
- java.lang.Object
-
- java.lang.Enum<PluginSupport.SupportLevel>
-
- net.shibboleth.idp.plugin.PluginSupport.SupportLevel
-
- All Implemented Interfaces:
Serializable,Comparable<PluginSupport.SupportLevel>
- Enclosing class:
- PluginSupport
public static enum PluginSupport.SupportLevel extends Enum<PluginSupport.SupportLevel>
Value for support level pointed to byPluginSupport.SUPPORT_LEVEL_INTERFIX.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateSupportLevel()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PluginSupport.SupportLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static PluginSupport.SupportLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Current
public static final PluginSupport.SupportLevel Current
The current release.
-
OutOfDate
public static final PluginSupport.SupportLevel OutOfDate
Still working but a new version is available.
-
Unsupported
public static final PluginSupport.SupportLevel Unsupported
Out of Support.
-
Secadv
public static final PluginSupport.SupportLevel Secadv
Security alerts against this plugin.
-
Withdrawn
public static final PluginSupport.SupportLevel Withdrawn
Withdrawn.
-
Unknown
public static final PluginSupport.SupportLevel Unknown
Nothing published.
-
-
Method Detail
-
values
public static PluginSupport.SupportLevel[] 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 (PluginSupport.SupportLevel c : PluginSupport.SupportLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PluginSupport.SupportLevel 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
-
-