Uses of Enum Class
cloud.opencode.base.date.extra.AmPm

Packages that use AmPm
Package
Description
 
  • Uses of AmPm in cloud.opencode.base.date.extra

    Subclasses with type arguments of type AmPm in cloud.opencode.base.date.extra
    Modifier and Type
    Class
    Description
    enum 
    AmPm enum representing AM (ante meridiem) and PM (post meridiem) 上午/下午枚举,表示上午(AM)和下午(PM)
    Classes in cloud.opencode.base.date.extra that implement interfaces with type arguments of type AmPm
    Modifier and Type
    Class
    Description
    enum 
    AmPm enum representing AM (ante meridiem) and PM (post meridiem) 上午/下午枚举,表示上午(AM)和下午(PM)
    Methods in cloud.opencode.base.date.extra that return AmPm
    Modifier and Type
    Method
    Description
    static AmPm
    AmPm.from(TemporalAccessor temporal)
    Gets the AmPm from a TemporalAccessor 从TemporalAccessor获取AmPm
    static AmPm
    AmPm.now()
    Gets the current AmPm 获取当前的上午/下午
    static AmPm
    AmPm.of(int value)
    Gets the AmPm from a value (0=AM, 1=PM) 从值获取AmPm(0=AM,1=PM)
    static AmPm
    AmPm.ofHour(int hourOfDay)
    Gets the AmPm from an hour (0-23) 从小时获取AmPm(0-23)
    AmPm.opposite()
    Gets the opposite period 获取相反的时段
    AmPm.queryFrom(TemporalAccessor temporal)
     
    static AmPm
    AmPm.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static AmPm[]
    AmPm.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in cloud.opencode.base.date.extra that return types with arguments of type AmPm
    Modifier and Type
    Method
    Description
    AmPm.query()
    Gets a query for extracting the AmPm from a temporal 获取从时间对象提取AmPm的查询