Uses of Interface
com.sun.n1.util.enum.Enum

Packages that use Enum
com.sun.n1.sps.model   
com.sun.n1.sps.model.bundle   
com.sun.n1.sps.model.component   
com.sun.n1.sps.model.difference   
com.sun.n1.sps.model.executor   
com.sun.n1.sps.model.host   
com.sun.n1.sps.model.plan   
com.sun.n1.sps.model.rule   
com.sun.n1.sps.model.util   
com.sun.n1.util.enum   
com.sun.n1.util.enumx   
 

Uses of Enum in com.sun.n1.sps.model
 

Classes in com.sun.n1.sps.model that implement Enum
 class Visibility
          A strongly-typed enumeration of object visibility, which may be either HIDDEN or VISIBLE.
 

Uses of Enum in com.sun.n1.sps.model.bundle
 

Classes in com.sun.n1.sps.model.bundle that implement Enum
 class EntityType
          The type of object being handled.
 

Uses of Enum in com.sun.n1.sps.model.component
 

Classes in com.sun.n1.sps.model.component that implement Enum
 class Modifier
          A strongly-typed enumeration of modifiers, which may be one of NONE, ABSTRACT or FINAL.
 class NamedBlockType
          A strongly-typed enumeration of named block types, which may be one of INSTALL, UNINSTALL, or CONTROL.
 

Uses of Enum in com.sun.n1.sps.model.difference
 

Classes in com.sun.n1.sps.model.difference that implement Enum
 class Level
          A strongly-typed enumeration for the level property of a DifferenceSettings, which may be one of HOST, DIR, FILE, UNDEFINED.
 class Scope
          A strongly-typed enumeration for the scope property of a DifferenceSettings, which may be one of HOSTSET, HOST, COMPONENT, UNDEFINED.
 class Style
          An enumeration for the style property of a DifferenceSettings, which may be one of MODEL_MODEL, MODEL_INSTALL, INSTALL_INSTALL, UNDEFINED.
 

Uses of Enum in com.sun.n1.sps.model.executor
 

Classes in com.sun.n1.sps.model.executor that implement Enum
 class OutputType
          A strongly-typed enumeration of exec native output types, which may be either STDOUT or STDERR.
 class RunLevel
          A strongly-typed enumeration of Runlevels to provide for better type-checking.
 class TargetStatusCode
          A strongly-typed enumeration of target status to provide for better type-checking.
 class TaskStatus
           
 

Uses of Enum in com.sun.n1.sps.model.host
 

Classes in com.sun.n1.sps.model.host that implement Enum
 class AppType
          A strongly-typed enumeration of app instance types, which may be either MS, LD, or RA.
 class ComparisonType
          A strongly-typed enumeration of comparsion types, which may be either equals or contains.
 class ConnectionType
          A strongly-typed enumeration of app instance connection types, which may be either RAW, SSH, or SSL.
 class UpgradeNodeState
          Instances of this class indicate the exact state of a node within an upgrade task.
 class UpgradeTaskState
          Instances of this class indicate the current status of the upgrade task.
 

Uses of Enum in com.sun.n1.sps.model.plan
 

Classes in com.sun.n1.sps.model.plan that implement Enum
 class ExecutionMode
          A strongly-typed enumeration of execution modes, which may be either PARALLEL or SERIES.
 

Uses of Enum in com.sun.n1.sps.model.rule
 

Classes in com.sun.n1.sps.model.rule that implement Enum
 class CriteriaShorthand
          A criteria shorthand is used to set one or more properties in a criteria meta data object to certain predefined values as specified by the shorthand instance.
 class HostStatus
          A strongly-typed enumeration of HostStatus to provide for better type-checking.
 class TaskType
          A strongly-typed enumeration of TaskType to provide for better type-checking.
 

Uses of Enum in com.sun.n1.sps.model.util
 

Classes in com.sun.n1.sps.model.util that implement Enum
 class TransformType
          A strongly-typed enumeration of text transformation types, which may be COPY, PERL or XSLT.
 

Uses of Enum in com.sun.n1.util.enum
 

Classes in com.sun.n1.util.enum that implement Enum
 class EnumImpl
          This class is the base implementation of the Enumumeration types.
 

Methods in com.sun.n1.util.enum that return Enum
 Enum[] EnumFactory.getAllEnums(Enum[] container)
          Returns an array of all enums.
 Enum[] EnumFactoryImpl.getAllEnums(Enum[] container)
          Returns an array of all enums.
 Enum EnumFactory.getEnum(int value)
          Returns the enum associated with the passed int value.
 Enum EnumFactoryImpl.getEnum(int value)
          Returns the enum associated with the passed int value.
 Enum EnumFactory.getEnum(java.lang.String value)
          Returns the enum associated with the passed String value.
 Enum EnumFactoryImpl.getEnum(java.lang.String value)
          Returns the enum associated with the passed string value.
 

Methods in com.sun.n1.util.enum with parameters of type Enum
 Enum[] EnumFactory.getAllEnums(Enum[] container)
          Returns an array of all enums.
 Enum[] EnumFactoryImpl.getAllEnums(Enum[] container)
          Returns an array of all enums.
 

Uses of Enum in com.sun.n1.util.enumx
 

Subinterfaces of Enum in com.sun.n1.util.enumx
 interface EnumX
          This interface represents a type safe enumeration and is meant to replace the interface com.sun.n1.util.enum.Enum and allow Java 5.0 compliant code to be authored.
 

Classes in com.sun.n1.util.enumx that implement Enum
 class EnumXImpl
          This class is the base implementation of the Enumumeration types.