org.attoparser.markup
Enum MarkupParsingConfiguration.PrologPresence

Object
  extended by Enum<MarkupParsingConfiguration.PrologPresence>
      extended by org.attoparser.markup.MarkupParsingConfiguration.PrologPresence
All Implemented Interfaces:
Serializable, Comparable<MarkupParsingConfiguration.PrologPresence>
Enclosing class:
MarkupParsingConfiguration

public static enum MarkupParsingConfiguration.PrologPresence
extends Enum<MarkupParsingConfiguration.PrologPresence>


Enum Constant Summary
ALLOWED
           
FORBIDDEN
           
REQUIRED
           
 
Method Summary
 boolean isAllowed()
           
 boolean isForbidden()
           
 boolean isRequired()
           
static MarkupParsingConfiguration.PrologPresence valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MarkupParsingConfiguration.PrologPresence[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REQUIRED

public static final MarkupParsingConfiguration.PrologPresence REQUIRED

ALLOWED

public static final MarkupParsingConfiguration.PrologPresence ALLOWED

FORBIDDEN

public static final MarkupParsingConfiguration.PrologPresence FORBIDDEN
Method Detail

values

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

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

valueOf

public static MarkupParsingConfiguration.PrologPresence 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

isRequired

public boolean isRequired()

isAllowed

public boolean isAllowed()

isForbidden

public boolean isForbidden()


Copyright © 2012 The ATTOPARSER team. All Rights Reserved.