Package jisd.debug
Class DebugResult
- java.lang.Object
-
- jisd.debug.DebugResult
-
public class DebugResult extends java.lang.Object
Debug results which contains observed values.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Check equality by locationstatic int
getDefaultMaxNoOfExpand()
Get the default max number of the variable expantion stratastatic int
getDefaultMaxRecordNoOfValue()
Get the default max record number of valuesValueInfo
getLatestValue()
Get the latest observed valueLocation
getLocation()
Get the location this result belongs toint
getMaxNoOfExpand()
Get the max number of the variable expantion strataint
getMaxRecordNoOfValue()
Get the max record number of valuesjava.util.ArrayList<ValueInfo>
getValues()
Get an observed valueint
hashCode()
Generate the hash code.ValueInfo
lv()
Get the latest observed value (alias of getLatestValue())static void
setDefaultMaxNoOfExpand(int number)
Set the default max number of the variable expantion stratastatic void
setDefaultMaxRecordNoOfValue(int number)
Set the default max record number of valuesvoid
setMaxNoOfExpand(int number)
Set the max number of the variable expantion stratavoid
setMaxRecordNoOfValue(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:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
Check equality by location- Overrides:
equals
in 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
-
-