org.example.azapi.constants
Enum AzCategoryIdSubjectIntermediary

java.lang.Object
  extended by java.lang.Enum<AzCategoryIdSubjectIntermediary>
      extended by org.example.azapi.constants.AzCategoryIdSubjectIntermediary
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AzCategoryIdSubjectIntermediary>, AzCategoryId

public enum AzCategoryIdSubjectIntermediary
extends java.lang.Enum<AzCategoryIdSubjectIntermediary>
implements AzCategoryId

The AzCategoryIdSubjectIntermediary identifier indicates a system entity through which the access request was passed. There may be more than one. No means is provided to specify the order in which they passed the message.


Enum Constant Summary
AZ_CATEGORY_ID_SUBJECT_INTERMEDIARY
          XACML Category: urn:oasis:names:tc:xacml:1.0:subject-category:intermediary-subject.
 
Method Summary
 java.lang.String toString()
           
static AzCategoryIdSubjectIntermediary valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AzCategoryIdSubjectIntermediary[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AZ_CATEGORY_ID_SUBJECT_INTERMEDIARY

public static final AzCategoryIdSubjectIntermediary AZ_CATEGORY_ID_SUBJECT_INTERMEDIARY
XACML Category: urn:oasis:names:tc:xacml:1.0:subject-category:intermediary-subject.

Method Detail

values

public static AzCategoryIdSubjectIntermediary[] 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 (AzCategoryIdSubjectIntermediary c : AzCategoryIdSubjectIntermediary.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AzCategoryIdSubjectIntermediary 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 name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<AzCategoryIdSubjectIntermediary>