Module bus.auth

Enum Class PinterestScope

java.lang.Object
java.lang.Enum<PinterestScope>
org.miaixz.bus.auth.nimble.pinterest.PinterestScope
All Implemented Interfaces:
Serializable, Comparable<PinterestScope>, Constable, AuthorizeScope

public enum PinterestScope extends Enum<PinterestScope> implements AuthorizeScope
Pinterest 授权范围
Since:
Java 17+
Author:
Kimi Liu
  • Enum Constant Details

    • READ_PUBLIC

      public static final PinterestScope READ_PUBLIC
      scope 含义,以description 为准
    • WRITE_PUBLIC

      public static final PinterestScope WRITE_PUBLIC
    • READ_RELATIONSHIPS

      public static final PinterestScope READ_RELATIONSHIPS
    • WRITE_RELATIONSHIPS

      public static final PinterestScope WRITE_RELATIONSHIPS
  • Method Details

    • values

      public static PinterestScope[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PinterestScope valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null