Enum OauthField

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<OauthField>

    public enum OauthField
    extends java.lang.Enum<OauthField>
    The Enum OauthField.
    • Enum Constant Detail

      • CLIENT_ID

        public static final OauthField CLIENT_ID
      • CLIENT_SECRET

        public static final OauthField CLIENT_SECRET
      • GRANT_TYPE

        public static final OauthField GRANT_TYPE
      • REDIRECCT_URI

        public static final OauthField REDIRECCT_URI
      • USERNAME

        public static final OauthField USERNAME
      • PASSWORD

        public static final OauthField PASSWORD
      • REFRESH_TOKEN

        public static final OauthField REFRESH_TOKEN
    • Method Detail

      • values

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

        public static OauthField 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<OauthField>