Package com.identityworksllc.iiq.common
Enum IIQFeature
- java.lang.Object
-
- java.lang.Enum<IIQFeature>
-
- com.identityworksllc.iiq.common.IIQFeature
-
- All Implemented Interfaces:
Serializable,Comparable<IIQFeature>
public enum IIQFeature extends Enum<IIQFeature>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IIQFeaturevalueOf(String name)Returns the enum constant of this type with the specified name.static IIQFeature[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AccessHistory
public static final IIQFeature AccessHistory
-
AcceleratorPack
public static final IIQFeature AcceleratorPack
-
AIRecommender
public static final IIQFeature AIRecommender
-
IdentityAttributeAccessControls
public static final IIQFeature IdentityAttributeAccessControls
-
AttributeSyncWorkflows
public static final IIQFeature AttributeSyncWorkflows
-
BundleProfileService
public static final IIQFeature BundleProfileService
-
DataExtract
public static final IIQFeature DataExtract
-
EncapsulatedConnectors
public static final IIQFeature EncapsulatedConnectors
-
FixedJDBCGetObject
public static final IIQFeature FixedJDBCGetObject
-
HostSpecificRequestHandlers
public static final IIQFeature HostSpecificRequestHandlers
-
IQServiceTLS
public static final IIQFeature IQServiceTLS
-
IQServiceTLSMandatory
public static final IIQFeature IQServiceTLSMandatory
-
NamedTimestamp
public static final IIQFeature NamedTimestamp
-
PluginOAuth2
public static final IIQFeature PluginOAuth2
-
RapidSetup
public static final IIQFeature RapidSetup
-
Tomcat10
public static final IIQFeature Tomcat10
-
-
Method Detail
-
values
public static IIQFeature[] 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 (IIQFeature c : IIQFeature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IIQFeature 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
-
-