atg.epub.project
Class DeploymentLogEnumDeploymentType

java.lang.Object
  extended by atg.epub.project.DeploymentLogEnumDeploymentType
All Implemented Interfaces:
java.io.Serializable

public class DeploymentLogEnumDeploymentType
extends java.lang.Object
implements java.io.Serializable

This class holds the value of the DeploymentLog.deploymentType property. That property is an "enumerated" type, meaning that it has a predefined set of allowed values. Each of those values has an associated String "tag", but the values themselves are instances of this class. The instances can be retrieved by calling the getter method corresonding to the desired value. Each value is a singleton, meaning that "==" and "equals" will have the same result when testing for equlity. The following describes which getter should be used to obtain a value representing a particular tag:

TagGetter
IncrementalgetIncremental()
FullgetFull()

See Also:
Serialized Form

Constructor Summary
DeploymentLogEnumDeploymentType()
           
DeploymentLogEnumDeploymentType(java.lang.String pTag, java.lang.Object pValue)
           
 
Method Summary
static DeploymentLogEnumDeploymentType getFull()
          Returns the instance representing the String value "Full"
static DeploymentLogEnumDeploymentType getIncremental()
          Returns the instance representing the String value "Incremental"
 java.lang.String toString()
          Returns the String value represented by this instance
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeploymentLogEnumDeploymentType

public DeploymentLogEnumDeploymentType(java.lang.String pTag,
                                       java.lang.Object pValue)

DeploymentLogEnumDeploymentType

public DeploymentLogEnumDeploymentType()
Method Detail

getIncremental

public static DeploymentLogEnumDeploymentType getIncremental()

Returns the instance representing the String value "Incremental"


getFull

public static DeploymentLogEnumDeploymentType getFull()

Returns the instance representing the String value "Full"


toString

public java.lang.String toString()

Returns the String value represented by this instance

Overrides:
toString in class java.lang.Object