枚举类 TimePeriods

java.lang.Object
java.lang.Enum<TimePeriods>
com.grapecity.documents.excel.TimePeriods
所有已实现的接口:
Serializable, Comparable<TimePeriods>, Constable

public enum TimePeriods extends Enum<TimePeriods>
指定时间周期。
  • 枚举常量详细资料

    • Today

      public static final TimePeriods Today
      指定今天。
    • Yesterday

      public static final TimePeriods Yesterday
      指定昨天。
    • Last7Days

      public static final TimePeriods Last7Days
      指定最后7天。
    • ThisWeek

      public static final TimePeriods ThisWeek
      指定本周。
    • LastWeek

      public static final TimePeriods LastWeek
      指定上周。
    • LastMonth

      public static final TimePeriods LastMonth
      指定上个月。
    • Tomorrow

      public static final TimePeriods Tomorrow
      指定明天。
    • NextWeek

      public static final TimePeriods NextWeek
      指定下周。
    • NextMonth

      public static final TimePeriods NextMonth
      指定下个月。
    • ThisMonth

      public static final TimePeriods ThisMonth
      指定这个月。
  • 方法详细资料

    • values

      public static TimePeriods[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static TimePeriods valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值