Package ipsk.db.speech
Class TypedPropertyValue
- java.lang.Object
-
- ipsk.db.speech.TypedPropertyValue
-
- All Implemented Interfaces:
java.io.Serializable
public class TypedPropertyValue extends java.lang.Object implements java.io.SerializableA typed value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TypedPropertyValue()default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypedPropertyDescriptorgetDescriptor()java.lang.DoublegetDoubleValue()java.lang.StringgetEnumValue()java.lang.LonggetLongValue()java.lang.StringgetStringValue()intgetTypedPropertyValueId()voidsetDescriptor(TypedPropertyDescriptor descriptor)voidsetDoubleValue(java.lang.Double doubleValue)voidsetEnumValue(java.lang.String enumValue)voidsetLongValue(java.lang.Long longValue)voidsetStringValue(java.lang.String stringValue)voidsetTypedPropertyValueId(int typedPropertyValueId)
-
-
-
Method Detail
-
getTypedPropertyValueId
public int getTypedPropertyValueId()
-
setTypedPropertyValueId
public void setTypedPropertyValueId(int typedPropertyValueId)
-
getLongValue
public java.lang.Long getLongValue()
-
setLongValue
public void setLongValue(java.lang.Long longValue)
-
getDoubleValue
public java.lang.Double getDoubleValue()
-
setDoubleValue
public void setDoubleValue(java.lang.Double doubleValue)
-
getStringValue
public java.lang.String getStringValue()
-
setStringValue
public void setStringValue(java.lang.String stringValue)
-
getEnumValue
public java.lang.String getEnumValue()
-
setEnumValue
public void setEnumValue(java.lang.String enumValue)
-
getDescriptor
public TypedPropertyDescriptor getDescriptor()
-
setDescriptor
public void setDescriptor(TypedPropertyDescriptor descriptor)
-
-