Skip navigation links

Oracle Outside In Java API Reference
8.5.3

E57629-03


com.oracle.outsidein.options
Enum Options.IECondCommentFlagValues

java.lang.Object
  extended by java.lang.Enum<Options.IECondCommentFlagValues>
      extended by com.oracle.outsidein.options.Options.IECondCommentFlagValues

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Options.IECondCommentFlagValues>
Enclosing class:
Options

public static enum Options.IECondCommentFlagValues
extends java.lang.Enum<Options.IECondCommentFlagValues>

Values to control special types of comments that will be read by particular versions of browsers or other products.


Enum Constant Summary
ALL
          include all conditional comments
IE5
          include the IE 5 comments
IE6
          include the IE 6 comments
IE7
          include the IE 7 comments
IE8
          include the IE 8 comments
IE9
          include the IE 9 comments
NONE
          Don't output any conditional comments.

 

Field Summary
 long value
           

 

Method Summary
static Options.IECondCommentFlagValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Options.IECondCommentFlagValues[] 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

NONE

public static final Options.IECondCommentFlagValues NONE
Don't output any conditional comments.

IE5

public static final Options.IECondCommentFlagValues IE5
include the IE 5 comments

IE6

public static final Options.IECondCommentFlagValues IE6
include the IE 6 comments

IE7

public static final Options.IECondCommentFlagValues IE7
include the IE 7 comments

IE8

public static final Options.IECondCommentFlagValues IE8
include the IE 8 comments

IE9

public static final Options.IECondCommentFlagValues IE9
include the IE 9 comments

ALL

public static final Options.IECondCommentFlagValues ALL
include all conditional comments

Field Detail

value

public final long value

Method Detail

values

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

valueOf

public static Options.IECondCommentFlagValues 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

Skip navigation links

Oracle Outside In Java API Reference
8.5.3

E57629-03


Copyright © 2016, Oracle and/or its affiliates. All rights reserved.