Uses of Class
org.op4j.functions.DecimalPoint

Packages that use DecimalPoint
org.op4j.functions   
 

Uses of DecimalPoint in org.op4j.functions
 

Methods in org.op4j.functions that return DecimalPoint
static DecimalPoint DecimalPoint.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DecimalPoint[] DecimalPoint.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.op4j.functions with parameters of type DecimalPoint
static Function<String,Boolean> FnString.canBeBigDecimal(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid BigDecimal using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeBigInteger(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid BigInteger using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeByte(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Byte using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeDouble(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Double using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeFloat(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Float using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeInteger(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Integer using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeLong(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Long using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.canBeShort(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Short using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.isBigDecimal(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeBigDecimal(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isBigInteger(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeBigInteger(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isByte(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeByte(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isDouble(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeDouble(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isFloat(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeFloat(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isInteger(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeInteger(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isLong(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeLong(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isShort(DecimalPoint decimalPoint)
          Deprecated. use FnString.canBeShort(DecimalPoint) instead. This method will be removed in version 1.3
static Function<String,Boolean> FnString.isValidBigDecimal(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid BigDecimal using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.isValidDouble(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Double using the specified decimal point configuration (DecimalPoint).
static Function<String,Boolean> FnString.isValidFloat(DecimalPoint decimalPoint)
           Returns true if the input String can be converted into a valid Float using the specified decimal point configuration (DecimalPoint).
static Function<String,BigDecimal> FnString.toBigDecimal(DecimalPoint decimalPoint)
           Converts a String into a BigDecimal, using the specified decimal point configuration (DecimalPoint).
static Function<String,BigDecimal> FnString.toBigDecimal(int scale, RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a BigDecimal, using the specified decimal point configuration (DecimalPoint) and establishing the specified scale.
static Function<String,BigInteger> FnString.toBigInteger(DecimalPoint decimalPoint)
           Converts a String into a BigInteger, using the specified decimal point configuration (DecimalPoint).
static Function<String,BigInteger> FnString.toBigInteger(RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a BigInteger, using the specified decimal point configuration (DecimalPoint).
static Function<String,Byte> FnString.toByte(DecimalPoint decimalPoint)
           Converts a String into a Byte, using the specified decimal point configuration (DecimalPoint).
static Function<String,Byte> FnString.toByte(RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a Byte, using the specified decimal point configuration (DecimalPoint).
static Function<String,Double> FnString.toDouble(DecimalPoint decimalPoint)
           Converts a String into a Double, using the specified decimal point configuration (DecimalPoint).
static Function<String,Double> FnString.toDouble(int scale, RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a Double, using the specified decimal point configuration (DecimalPoint) and establishing the specified scale.
static Function<String,Float> FnString.toFloat(DecimalPoint decimalPoint)
           Converts a String into a Float, using the specified decimal point configuration (DecimalPoint).
static Function<String,Float> FnString.toFloat(int scale, RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a Float, using the specified decimal point configuration (DecimalPoint) and establishing the specified scale.
static Function<String,Integer> FnString.toInteger(DecimalPoint decimalPoint)
           Converts a String into an Integer, using the specified decimal point configuration (DecimalPoint).
static Function<String,Integer> FnString.toInteger(RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into an Integer, using the specified decimal point configuration (DecimalPoint).
static Function<String,Long> FnString.toLong(DecimalPoint decimalPoint)
           Converts a String into a Long, using the specified decimal point configuration (DecimalPoint).
static Function<String,Long> FnString.toLong(RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a Long, using the specified decimal point configuration (DecimalPoint).
static Function<String,Short> FnString.toShort(DecimalPoint decimalPoint)
           Converts a String into a Short, using the specified decimal point configuration (DecimalPoint).
static Function<String,Short> FnString.toShort(RoundingMode roundingMode, DecimalPoint decimalPoint)
           Converts a String into a Short, using the specified decimal point configuration (DecimalPoint).
 



Copyright © 2012 The OP4J team. All Rights Reserved.