org.isam.exehda.services
Class Collector.SensorParameter

java.lang.Object
  |
  +--org.isam.exehda.services.Collector.SensorParameter
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
Collector

public static class Collector.SensorParameter
extends java.lang.Object
implements java.io.Serializable

Represents a sensor configuration parameter.

See Also:
Serialized Form

Constructor Summary
Collector.SensorParameter(java.lang.String n, java.lang.Class t, Collector.Sensor s)
          Creates a new SensorParameter instance.
 
Method Summary
 boolean equals(java.lang.Object o)
           
 java.lang.String getName()
          Returns the name of this parameter.
 Collector.Sensor getSensor()
          Returns the sensor that owns this parameter.
 java.lang.Class getType()
          Returns the type of this parameter.
 int hashCode()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Collector.SensorParameter

public Collector.SensorParameter(java.lang.String n,
                                 java.lang.Class t,
                                 Collector.Sensor s)
Creates a new SensorParameter instance.

Parameters:
n - parameter name
t - parameter type
s - sensor who owns this parameter
Method Detail

getName

public java.lang.String getName()
Returns the name of this parameter.

Returns:
parameter name

getType

public java.lang.Class getType()
Returns the type of this parameter.

Returns:
parameter type

getSensor

public Collector.Sensor getSensor()
Returns the sensor that owns this parameter.

Returns:
Onwer sensor

hashCode

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

equals

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