net.opengis.olsnav.v_1_3
Enum DayOfWeekEnum

java.lang.Object
  extended by java.lang.Enum<DayOfWeekEnum>
      extended by net.opengis.olsnav.v_1_3.DayOfWeekEnum
All Implemented Interfaces:
Serializable, Comparable<DayOfWeekEnum>

public enum DayOfWeekEnum
extends Enum<DayOfWeekEnum>

Java class for DayOfWeekEnum.

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

 <simpleType name="DayOfWeekEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Monday = 0x1"/>
     <enumeration value="Tuesday = 0x2"/>
     <enumeration value="Wednesday = 0x4"/>
     <enumeration value="Thursday = 0x8"/>
     <enumeration value="Friday = 0x10"/>
     <enumeration value="Saturday = 0x20"/>
     <enumeration value="Sunday = 0x40"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
FRIDAY_0_X_10
           
MONDAY_0_X_1
           
SATURDAY_0_X_20
           
SUNDAY_0_X_40
           
THURSDAY_0_X_8
           
TUESDAY_0_X_2
           
WEDNESDAY_0_X_4
           
 
Method Summary
static DayOfWeekEnum fromValue(String v)
           
 String value()
           
static DayOfWeekEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DayOfWeekEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MONDAY_0_X_1

public static final DayOfWeekEnum MONDAY_0_X_1

TUESDAY_0_X_2

public static final DayOfWeekEnum TUESDAY_0_X_2

WEDNESDAY_0_X_4

public static final DayOfWeekEnum WEDNESDAY_0_X_4

THURSDAY_0_X_8

public static final DayOfWeekEnum THURSDAY_0_X_8

FRIDAY_0_X_10

public static final DayOfWeekEnum FRIDAY_0_X_10

SATURDAY_0_X_20

public static final DayOfWeekEnum SATURDAY_0_X_20

SUNDAY_0_X_40

public static final DayOfWeekEnum SUNDAY_0_X_40
Method Detail

values

public static DayOfWeekEnum[] 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 (DayOfWeekEnum c : DayOfWeekEnum.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DayOfWeekEnum valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static DayOfWeekEnum fromValue(String v)


Copyright © 2008-2016. All Rights Reserved.