Enum UserIdentificationHintType

    • Enum Constant Detail

      • ID_TOKEN_HINT

        public static final UserIdentificationHintType ID_TOKEN_HINT
        "id_token_hint"; An ID token previously issued to the client.
      • LOGIN_HINT

        public static final UserIdentificationHintType LOGIN_HINT
        "login_hint"; An arbitrary string whose interpretation varies depending on contexts.
      • LOGIN_HINT_TOKEN

        public static final UserIdentificationHintType LOGIN_HINT_TOKEN
        "login_hint_token"; A token whose format is deployment or profile specific.
    • Method Detail

      • values

        public static UserIdentificationHintType[] 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 (UserIdentificationHintType c : UserIdentificationHintType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UserIdentificationHintType 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
      • getValue

        public short getValue()
        Get the integer representation of this enum instance.
      • getByValue

        public static UserIdentificationHintType getByValue​(short value)
        Find an instance of this enum by a value.
        Parameters:
        value - The integer representation of the instance to find.
        Returns:
        An instance of this enum, or null if not found.
      • parse

        public static UserIdentificationHintType parse​(String hintType)
        Convert String to HintType.
        Parameters:
        hintType - A hint type. For example, "id_token_hint".
        Returns:
        HintType instance, or null.