org.apache.nutch.net
Enum URLScopeFilter.Mode

java.lang.Object
  extended by java.lang.Enum<URLScopeFilter.Mode>
      extended by org.apache.nutch.net.URLScopeFilter.Mode
All Implemented Interfaces:
Serializable, Comparable<URLScopeFilter.Mode>
Enclosing class:
URLScopeFilter

public static enum URLScopeFilter.Mode
extends Enum<URLScopeFilter.Mode>


Enum Constant Summary
ANY
           
SAME_DOMAIN
           
SAME_HOST
           
 
Method Summary
static URLScopeFilter.Mode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static URLScopeFilter.Mode[] 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

ANY

public static final URLScopeFilter.Mode ANY

SAME_HOST

public static final URLScopeFilter.Mode SAME_HOST

SAME_DOMAIN

public static final URLScopeFilter.Mode SAME_DOMAIN
Method Detail

values

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

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

valueOf

public static URLScopeFilter.Mode 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


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