Enum Class Scope.DEFAULT

java.lang.Object
java.lang.Enum<Scope.DEFAULT>
cn.dinodev.spring.commons.Scope.DEFAULT
所有已实现的接口:
Scope, Serializable, Comparable<Scope.DEFAULT>, Constable
封闭接口:
Scope

public static enum Scope.DEFAULT extends Enum<Scope.DEFAULT> implements Scope
  • 枚举常量详细资料

  • 方法详细资料

    • values

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

      public static Scope.DEFAULT 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getName

      public String getName()
      从接口复制的说明: Scope
      scope 的名字
      指定者:
      getName 在接口中 Scope
      返回:
    • getOrder

      public int getOrder()
      从接口复制的说明: Scope
      scope 顺序
      指定者:
      getOrder 在接口中 Scope
      返回:
    • lowerScopes

      public Scope[] lowerScopes(boolean includeThis)
      从接口复制的说明: Scope
      比自己优先级低的Scopes
      指定者:
      lowerScopes 在接口中 Scope
      参数:
      includeThis - 是否包含本Scope
      返回:
      比自己小或等于自己排序的Scopes
    • higherScopes

      public Scope[] higherScopes(boolean includeThis)
      从接口复制的说明: Scope
      比自己优先级高的Scopes
      指定者:
      higherScopes 在接口中 Scope
      参数:
      includeThis - 是否包含本Scope
      返回:
      比自己大或等于自己排序的Scopes
    • toString

      public String toString()
      覆盖:
      toString 在类中 Enum<Scope.DEFAULT>
    • provider

      public static Function<String,Scope> provider()
    • of

      public static Scope of(String name)