Uses of Class
org.sblim.cimclient.internal.uri.Value
-
Packages that use Value Package Description org.sblim.cimclient.internal.uri Internal implementation of WBEM-URI strings parsers as defined in the CIM Infrastructure Specification. -
-
Uses of Value in org.sblim.cimclient.internal.uri
Subclasses of Value in org.sblim.cimclient.internal.uri Modifier and Type Class Description class
BooleanValue
Class BooleanValue parses and encapsulates a boolean value.class
CharValue
Class CharValue parses character value.class
DateTimeValue
Class DateTimeValue is parses and encapsulates a datetime.class
IntegerValue
Class IntegerValue parses and encapsulates an integer value.class
RealValue
Class RealValue parses and encapsulates real values.class
ReferenceValue
Class UntypedReferenceValue encapsulates an untyped reference value.class
StringValue
Class UntypedStringValue parses an untyped string value.Methods in org.sblim.cimclient.internal.uri that return Value Modifier and Type Method Description Value
KeyValuePair. getValue()
getValuestatic Value
BooleanValue. parse(URIString pUriStr)
Parses an untyped boolean value.static Value
BooleanValue. parse(URIString pUriStr, boolean pThrow)
parsestatic Value
CharValue. parse(URIString pUriStr)
Parses a char16 value.static Value
CharValue. parse(URIString pUriStr, boolean pThrow)
charValue = // example: 'a' '\x32'static Value
DateTimeValue. parse(java.lang.String pStrVal)
static Value
DateTimeValue. parse(java.lang.String pStrVal, boolean pThrow)
datetimeValue = // quoted datetime stringstatic Value
IntegerValue. parse(URIString pUriStr)
Parses an untyped integer value.static Value
RealValue. parse(URIString pUriStr)
Parses a RealValue as a double precision value.static Value
StringValue. parse(URIString pUriStr)
Factory method for parsing quoted strings.static Value
Value. parse(boolean pTyped, URIString pUriStr)
Factory method which tries to parse an untyped value.static Value
RealValue. parseDouble(URIString pUriStr)
parseDoublestatic Value
RealValue. parseFloat(URIString pUriStr)
parseFloatstatic Value
IntegerValue. parseSigned(URIString pUriStr, int pBitWidth)
parseSignedstatic Value
IntegerValue. parseUnsigned(URIString pUriStr, int pBitWidth)
parseUnsigned
-