com.endeca.itl.cas.api
Enum ModuleCapability

java.lang.Object
  extended by java.lang.Enum<ModuleCapability>
      extended by com.endeca.itl.cas.api.ModuleCapability
All Implemented Interfaces:
Serializable, Comparable<ModuleCapability>

public enum ModuleCapability
extends Enum<ModuleCapability>

An enumeration of capabilities provided by modules supported by CAS Server.


Enum Constant Summary
BINARY_CONTENT_ACCESSIBLE_VIA_FILESYSTEM
           
DATA_SOURCE_FILTER
           
EXPAND_ARCHIVES
           
HAS_BINARY_CONTENT
           
SUPPORTS_INCREMENTALS
           
 
Method Summary
 String getDescription()
           
static ModuleCapability valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ModuleCapability[] 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

BINARY_CONTENT_ACCESSIBLE_VIA_FILESYSTEM

public static final ModuleCapability BINARY_CONTENT_ACCESSIBLE_VIA_FILESYSTEM

DATA_SOURCE_FILTER

public static final ModuleCapability DATA_SOURCE_FILTER

EXPAND_ARCHIVES

public static final ModuleCapability EXPAND_ARCHIVES

HAS_BINARY_CONTENT

public static final ModuleCapability HAS_BINARY_CONTENT

SUPPORTS_INCREMENTALS

public static final ModuleCapability SUPPORTS_INCREMENTALS
Method Detail

values

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

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

valueOf

public static ModuleCapability 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

getDescription

public String getDescription()


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