com.google.gdata.data.analytics
Class Step

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.analytics.Step
All Implemented Interfaces:
Extension

public class Step
extends ExtensionPoint

Single step in a multistep goal.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Constructor Summary
Step()
          Default mutable constructor.
Step(java.lang.String name, java.lang.Integer number, java.lang.String path)
          Immutable constructor.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
          Returns the extension description, specifying whether it is required, and whether it is repeatable.
 java.lang.String getName()
          Returns the step's name.
 java.lang.Integer getNumber()
          Returns the step's number in sequence.
 java.lang.String getPath()
          Returns the step's path.
 int hashCode()
           
 boolean hasName()
          Returns whether it has the step's name.
 boolean hasNumber()
          Returns whether it has the step's number in sequence.
 boolean hasPath()
          Returns whether it has the step's path.
 void setName(java.lang.String name)
          Sets the step's name.
 void setNumber(java.lang.Integer number)
          Sets the step's number in sequence.
 void setPath(java.lang.String path)
          Sets the step's path.
 java.lang.String toString()
           
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addRepeatingExtension, declareExtensions, generateCumulativeXmlBlob, getExtension, getExtensions, getHandler, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, setImmutable
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Step

public Step()
Default mutable constructor.


Step

public Step(java.lang.String name,
            java.lang.Integer number,
            java.lang.String path)
Immutable constructor.

Parameters:
name - step's name.
number - step's number in sequence.
path - step's path.
Method Detail

getName

public java.lang.String getName()
Returns the step's name.

Returns:
step's name

setName

public void setName(java.lang.String name)
Sets the step's name.

Parameters:
name - step's name or null to reset

hasName

public boolean hasName()
Returns whether it has the step's name.

Returns:
whether it has the step's name

getNumber

public java.lang.Integer getNumber()
Returns the step's number in sequence.

Returns:
step's number in sequence

setNumber

public void setNumber(java.lang.Integer number)
Sets the step's number in sequence.

Parameters:
number - step's number in sequence or null to reset

hasNumber

public boolean hasNumber()
Returns whether it has the step's number in sequence.

Returns:
whether it has the step's number in sequence

getPath

public java.lang.String getPath()
Returns the step's path.

Returns:
step's path

setPath

public void setPath(java.lang.String path)
Sets the step's path.

Parameters:
path - step's path or null to reset

hasPath

public boolean hasPath()
Returns whether it has the step's path.

Returns:
whether it has the step's path

getDefaultDescription

public static ExtensionDescription getDefaultDescription(boolean required,
                                                         boolean repeatable)
Returns the extension description, specifying whether it is required, and whether it is repeatable.

Parameters:
required - whether it is required
repeatable - whether it is repeatable
Returns:
extension description

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object