Interface IScikitLearnLoaderStringArrayFieldSetter<ObjectType>
-
- Type Parameters:
ObjectType- The type of the scikit-learn object.
public interface IScikitLearnLoaderStringArrayFieldSetter<ObjectType>A container for a method that sets a string array value into a scikit-learn object during deserialization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetStringArrayField(ObjectType obj, String[] value)Sets a string array value into a scikit-learn object.
-
-
-
Method Detail
-
setStringArrayField
void setStringArrayField(ObjectType obj, String[] value)
Sets a string array value into a scikit-learn object.- Parameters:
obj- The scikit-learn object.value- The value to be set.
-
-