Download this file

ClassifierMeta.java    34 lines (26 with data), 548 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package classification;
public class ClassifierMeta {
private String name;
private String type;
private boolean nominal;
private boolean numerical;
public ClassifierMeta(String name, String type, boolean nominal,
boolean numerical) {
this.name = name;
this.type = type;
this.nominal = nominal;
this.numerical = numerical;
}
public String getName() {
return name;
}
public String getType() {
return type;
}
public boolean isNominal() {
return nominal;
}
public boolean isNumerical() {
return numerical;
}
}