Package de.uplanet.lucy.server.ixvalue
Klasse AbstractIxValue
java.lang.Object
de.uplanet.lucy.server.ixvalue.AbstractIxValue
- Alle implementierten Schnittstellen:
IIxValue
- Bekannte direkte Unterklassen:
AbstractIxStringValue,IxBigDecimalValue,IxBooleanValue,IxDateTimeValue,IxDoubleValue,IxIntValue,IxLongValue,IxObjectValue
-
Feldübersicht
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfinal BigDecimalasBigDecimal(BigDecimal p_fallbackValue) Returns a big decimal value or the fallback value on an empty value.final booleanasBoolean(boolean p_bFallbackValue) Returns the boolean value or the fallback value on an empty value.asDate()Returns the date value.final DateReturns the date value or the fallback date for an empty value.final doubleasDouble(double p_dFallbackValue) Returns the value as an double or the fallback value on an empty value.final intasInt(int p_iFallbackValue) Returns a integer value or the fallback value on an empty value.final longasLong(long p_lFallbackValue) Returns a long value or the fallback value on an empty value.asString()Returns the value as an stringfinal StringReturns the value as an stringasTime()Returns the time value.final DateReturns the time value or the fallback value on an empty value.Returns a timestamp value.final TimestampasTimestamp(Timestamp p_fallbackValue) Returns the timestamp value or the given fallback value for an empty value.de.uplanet.lucy.types.UP_TYPEgetType()Returns the type.booleanhasValue()Returnstrueif the value is not empty or exits.Von Klasse geerbte Methoden java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitVon Schnittstelle geerbte Methoden de.uplanet.lucy.server.ixvalue.IIxValue
asBigDecimal, asBoolean, asDouble, asInt, asLong, asValueHolder, getValue, isPrimitive
-
Konstruktordetails
-
AbstractIxValue
- Parameter:
p_type- The type (notnull)p_value- The value (could benull)
-
-
Methodendetails
-
getType
public de.uplanet.lucy.types.UP_TYPE getType()Beschreibung aus Schnittstelle kopiert:IIxValueReturns the type. For internal use only. -
asString
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the value as an stringCast Rules: Date values: A string representation of the date in theyyyy-MM-dd HH:mm:ssformat, calculated for the TimeZone UTC. Other Types: String.valueOf(type) will returned. -
asString
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the value as an stringCast Rules: Date values: A string representation of the date in theyyyy-MM-dd HH:mm:ssformat, calculated for the TimeZone UTC. Other Types: String.valueOf(type) will returned.- Angegeben von:
asStringin SchnittstelleIIxValue- Parameter:
p_strFallback- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an string or p_strFallbackValue if
IIxValue.hasValue()==false.
-
asBoolean
public final boolean asBoolean(boolean p_bFallbackValue) Beschreibung aus Schnittstelle kopiert:IIxValueReturns the boolean value or the fallback value on an empty value.Cast Rules: String "0" = false "1" = true "true" = true "false" = false Numeric (int, long, double): 0 = false 1 = true- Angegeben von:
asBooleanin SchnittstelleIIxValue- Parameter:
p_bFallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an boolean or the given fallback value if
IIxValue.hasValue()==false.
-
asBigDecimal
Beschreibung aus Schnittstelle kopiert:IIxValueReturns a big decimal value or the fallback value on an empty value.Cast Rules: String new BigDecimal(value) Numeric Types new BigDecimalvalue)- Angegeben von:
asBigDecimalin SchnittstelleIIxValue- Parameter:
p_fallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an string or p_fallbackValue if
IIxValue.hasValue()==false.
-
asDouble
public final double asDouble(double p_dFallbackValue) Beschreibung aus Schnittstelle kopiert:IIxValueReturns the value as an double or the fallback value on an empty value.Cast Rules: String Double.parseDouble(value) Numeric: (double)value- Angegeben von:
asDoublein SchnittstelleIIxValue- Parameter:
p_dFallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an double or the fallback value if
IIxValue.hasValue()==false.
-
asInt
public final int asInt(int p_iFallbackValue) Beschreibung aus Schnittstelle kopiert:IIxValueReturns a integer value or the fallback value on an empty value.Cast Rules: String Integer.parseInteger(value) Numeric Types (int)value Other types: String.valueOf(type) will check.- Angegeben von:
asIntin SchnittstelleIIxValue- Parameter:
p_iFallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an integer or p_iFallbackValue if
IIxValue.hasValue()==false
-
asLong
public final long asLong(long p_lFallbackValue) Beschreibung aus Schnittstelle kopiert:IIxValueReturns a long value or the fallback value on an empty value.Cast Rules: String Long.parseLong(value) Numeric Types (long)value Other types: String.valueOf(type) will check.- Angegeben von:
asLongin SchnittstelleIIxValue- Parameter:
p_lFallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an long or p_lFallbackValue if
IIxValue.hasValue()==false.
-
hasValue
public boolean hasValue()Beschreibung aus Schnittstelle kopiert:IIxValueReturnstrueif the value is not empty or exits.- Angegeben von:
hasValuein SchnittstelleIIxValue- Gibt zurück:
- Returns
trueifIIxValue.getValue()!= null otherwisefalsewill returned.
-
asDate
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the date value.Value must be a date / time stamp / string type. -
asDate
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the date value or the fallback date for an empty value.Value must be a date / time stamp / string type.- Angegeben von:
asDatein SchnittstelleIIxValue- Parameter:
p_fallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an date.
-
asTime
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the time value.Value must be a time / time stamp / string type. -
asTime
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the time value or the fallback value on an empty value.Value must be a time / time stamp / string type. -
asTimestamp
Beschreibung aus Schnittstelle kopiert:IIxValueReturns a timestamp value.Value must be a date / timestamp type. No cast will be done.- Angegeben von:
asTimestampin SchnittstelleIIxValue- Gibt zurück:
- Returns the value as an timestamp.
-
asTimestamp
Beschreibung aus Schnittstelle kopiert:IIxValueReturns the timestamp value or the given fallback value for an empty value.Value must be a date / timestamp type. No cast will be done.- Angegeben von:
asTimestampin SchnittstelleIIxValue- Parameter:
p_fallbackValue- The fallback value used ifIIxValue.hasValue()==false.- Gibt zurück:
- Returns the value as an timestamp.
-