com.samsung.android.penup

Enum Period

  • java.lang.Object
    • java.lang.Enum<Period>
      • com.samsung.android.penup.Period
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Period>


    public enum Period
    extends java.lang.Enum<Period>
    This enum provides periods for calculating popularities of artworks.
    Since:
    PEN.UP 1.0
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      ALL
      The whole period
      MONTH
      The period for a month
      WEEK
      The period for a week
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static Period valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Period[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
    • Enum Constant Detail

      • ALL

        public static final Period ALL
        The whole period
        Since:
        PEN.UP 1.0
      • MONTH

        public static final Period MONTH
        The period for a month
        Since:
        PEN.UP 1.0
      • WEEK

        public static final Period WEEK
        The period for a week
        Since:
        PEN.UP 1.0
    • Method Detail

      • values

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

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