Package fis.optimization.crossvalidation
Interface CrossValidation
-
- All Superinterfaces:
BeanCloneable<CrossValidation>,Cloneable,com.jgoodies.common.bean.ObservableBean,com.jgoodies.common.bean.ObservableBean2
- All Known Implementing Classes:
CrossValidationModel
public interface CrossValidation extends com.jgoodies.common.bean.ObservableBean2, BeanCloneable<CrossValidation>
-
-
Field Summary
Fields Modifier and Type Field Description static booleanDEFAULT_ENABLEDstatic StringLABEL_CROSS_VALIDATIONstatic StringPROPERTY_CLASSIF_CHANGEDstatic StringPROPERTY_ENABLEDstatic StringPROPERTY_PAIR_SAMPLE_CHANGED
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassifSamplegetClassifSample()PairSamplegetPairSample()booleanisEnabled()voidsetEnabled(boolean enabled)-
Methods inherited from interface util.bean.BeanCloneable
clone
-
-
-
-
Field Detail
-
PROPERTY_PAIR_SAMPLE_CHANGED
static final String PROPERTY_PAIR_SAMPLE_CHANGED
- See Also:
- Constant Field Values
-
PROPERTY_CLASSIF_CHANGED
static final String PROPERTY_CLASSIF_CHANGED
- See Also:
- Constant Field Values
-
PROPERTY_ENABLED
static final String PROPERTY_ENABLED
- See Also:
- Constant Field Values
-
DEFAULT_ENABLED
static final boolean DEFAULT_ENABLED
- See Also:
- Constant Field Values
-
LABEL_CROSS_VALIDATION
static final String LABEL_CROSS_VALIDATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setEnabled
void setEnabled(boolean enabled)
-
isEnabled
boolean isEnabled()
-
getPairSample
PairSample getPairSample()
-
getClassifSample
ClassifSample getClassifSample()
-
-