Package com.blackhillsoftware.smf.smf92
Class LockContentionEntry
java.lang.Object
com.blackhillsoftware.smf.Data
com.blackhillsoftware.smf.SmfData
com.blackhillsoftware.smf.smf92.LockContentionEntry
-
Method Summary
Modifier and TypeMethodDescriptionstatic LockContentionEntry
create
(byte[] Data, int offset, int length) create is intended for internal use only.long
SMF92LLASY value, throws exception if SMF92LLASY overflows 64 bit signed integer.SMF92LLASY value as a BigInteger.SMF92LLDS value.double
SMF92LLPCT value divided by 1000 to correct scale.long
SMF92LLSPN value, throws exception if SMF92LLSPN overflows 64 bit signed integer.SMF92LLSPN value as a BigInteger.long
SMF92LLWT value, throws exception if SMF92LLWT overflows 64 bit signed integer.SMF92LLWT value as a BigInteger.Methods inherited from class com.blackhillsoftware.smf.SmfData
createSection, getTriplet
-
Method Details
-
smf92llwt
public long smf92llwt()SMF92LLWT value, throws exception if SMF92LLWT overflows 64 bit signed integer.- Returns:
- long SMF92LLWT
- Throws:
IllegalArgumentException
- If the value of SMF92LLWT exceeds the maximum value of a signed 64 bit integer (i.e. the high order bit is set in SMF92LLWT). Usesmf92llwtAsBigInteger()
if this is possible.
-
smf92llwtAsBigInteger
SMF92LLWT value as a BigInteger.smf92llwt()
may provide better performance if the value will not exceed the maximum value for a signed long.- Returns:
- BigInteger SMF92LLWT
-
smf92llasy
public long smf92llasy()SMF92LLASY value, throws exception if SMF92LLASY overflows 64 bit signed integer.- Returns:
- long SMF92LLASY
- Throws:
IllegalArgumentException
- If the value of SMF92LLASY exceeds the maximum value of a signed 64 bit integer (i.e. the high order bit is set in SMF92LLASY). Usesmf92llasyAsBigInteger()
if this is possible.
-
smf92llasyAsBigInteger
SMF92LLASY value as a BigInteger.smf92llasy()
may provide better performance if the value will not exceed the maximum value for a signed long.- Returns:
- BigInteger SMF92LLASY
-
smf92llspn
public long smf92llspn()SMF92LLSPN value, throws exception if SMF92LLSPN overflows 64 bit signed integer.- Returns:
- long SMF92LLSPN
- Throws:
IllegalArgumentException
- If the value of SMF92LLSPN exceeds the maximum value of a signed 64 bit integer (i.e. the high order bit is set in SMF92LLSPN). Usesmf92llspnAsBigInteger()
if this is possible.
-
smf92llspnAsBigInteger
SMF92LLSPN value as a BigInteger.smf92llspn()
may provide better performance if the value will not exceed the maximum value for a signed long.- Returns:
- BigInteger SMF92LLSPN
-
smf92llpct
public double smf92llpct()SMF92LLPCT value divided by 1000 to correct scale.- Returns:
- double SMF92LLPCT value
-
smf92llds
SMF92LLDS value.- Returns:
- String SMF92LLDS value
-
create
create is intended for internal use only. Instances of this section are created by the parent record or section.- Parameters:
Data
- Array of bytes containing data for this sectionoffset
- Offset of this section in the datalength
- length of the section
-