Enum Class ShowType

java.lang.Object
java.lang.Enum<ShowType>
nl.b3p.topnl.top250nl.ShowType
All Implemented Interfaces:
Serializable, Comparable<ShowType>, Constable

public enum ShowType extends Enum<ShowType>
Java class for showType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="showType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="new"/>
     <enumeration value="replace"/>
     <enumeration value="embed"/>
     <enumeration value="other"/>
     <enumeration value="none"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • NEW

      public static final ShowType NEW
    • REPLACE

      public static final ShowType REPLACE
    • EMBED

      public static final ShowType EMBED
    • OTHER

      public static final ShowType OTHER
    • NONE

      public static final ShowType NONE
  • Method Details

    • values

      public static ShowType[] 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 ShowType 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
    • value

      public String value()
    • fromValue

      public static ShowType fromValue(String v)