Package adams.data.indexedsplits
Class AbstractIndexedSplitsRunsCompatibility
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.indexedsplits.AbstractIndexedSplitsRunsCompatibility
-
- All Implemented Interfaces:
Destroyable,GlobalInfoSupporter,LenientModeSupporter,LoggingLevelHandler,LoggingSupporter,OptionHandler,SizeOfHandler,IndexedSplitsRunsCompatibility,Serializable
- Direct Known Subclasses:
InstancesIndexedSplitsRunsCompatibility
public abstract class AbstractIndexedSplitsRunsCompatibility extends AbstractOptionHandler implements IndexedSplitsRunsCompatibility
For checking compatibility between indexed splits and data.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanm_Lenientwhether to be lenient.-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description AbstractIndexedSplitsRunsCompatibility()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddefineOptions()Adds options to the internal list of options.booleangetLenient()Returns whether to be lenient with the checks.abstract StringlenientTipText()Returns the tip text for this property.voidsetLenient(boolean value)Sets whether to be lenient with the checks.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.data.indexedsplits.IndexedSplitsRunsCompatibility
isCompatible
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceOptionHandler- Overrides:
defineOptionsin classAbstractOptionHandler
-
setLenient
public void setLenient(boolean value)
Sets whether to be lenient with the checks.- Specified by:
setLenientin interfaceLenientModeSupporter- Parameters:
value- true if lenient
-
getLenient
public boolean getLenient()
Returns whether to be lenient with the checks.- Specified by:
getLenientin interfaceLenientModeSupporter- Returns:
- true if lenient
-
lenientTipText
public abstract String lenientTipText()
Returns the tip text for this property.- Specified by:
lenientTipTextin interfaceLenientModeSupporter- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-