Package jisd.debug
Class DebugResult
- java.lang.Object
-
- jisd.debug.DebugResult
-
public class DebugResult extends java.lang.ObjectDebug results which contains observed values.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Check equality by locationstatic intgetDefaultMaxNoOfExpand()Get the default max number of the variable expantion stratastatic intgetDefaultMaxRecordNoOfValue()Get the default max record number of valuesValueInfogetLatestValue()Get the latest observed valueLocationgetLocation()Get the location this result belongs tointgetMaxNoOfExpand()Get the max number of the variable expantion strataintgetMaxRecordNoOfValue()Get the max record number of valuesjava.util.ArrayList<ValueInfo>getValues()Get an observed valueinthashCode()Generate the hash code.ValueInfolv()Get the latest observed value (alias of getLatestValue())static voidsetDefaultMaxNoOfExpand(int number)Set the default max number of the variable expantion stratastatic voidsetDefaultMaxRecordNoOfValue(int number)Set the default max record number of valuesvoidsetMaxNoOfExpand(int number)Set the max number of the variable expantion stratavoidsetMaxRecordNoOfValue(int number)Get the max record number of values
-
-
-
Method Detail
-
setDefaultMaxNoOfExpand
public static void setDefaultMaxNoOfExpand(int number)
Set the default max number of the variable expantion strata
-
setDefaultMaxRecordNoOfValue
public static void setDefaultMaxRecordNoOfValue(int number)
Set the default max record number of values
-
getValues
public java.util.ArrayList<ValueInfo> getValues()
Get an observed value- Returns:
- value
-
setMaxRecordNoOfValue
public void setMaxRecordNoOfValue(int number)
Get the max record number of values
-
getLatestValue
public ValueInfo getLatestValue()
Get the latest observed value- Returns:
- latest value
-
lv
public ValueInfo lv()
Get the latest observed value (alias of getLatestValue())- Returns:
- latest value
-
setMaxNoOfExpand
public void setMaxNoOfExpand(int number)
Set the max number of the variable expantion strata
-
hashCode
public int hashCode()
Generate the hash code.- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
Check equality by location- Overrides:
equalsin classjava.lang.Object
-
getDefaultMaxRecordNoOfValue
public static int getDefaultMaxRecordNoOfValue()
Get the default max record number of values
-
getDefaultMaxNoOfExpand
public static int getDefaultMaxNoOfExpand()
Get the default max number of the variable expantion strata
-
getLocation
public Location getLocation()
Get the location this result belongs to
-
getMaxRecordNoOfValue
public int getMaxRecordNoOfValue()
Get the max record number of values
-
getMaxNoOfExpand
public int getMaxNoOfExpand()
Get the max number of the variable expantion strata
-
-