本文整理匯總了Java中com.rapidminer.operator.preprocessing.filter.attributes.AttributeOrderingOperator類的典型用法代碼示例。如果您正苦於以下問題:Java AttributeOrderingOperator類的具體用法?Java AttributeOrderingOperator怎麽用?Java AttributeOrderingOperator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
AttributeOrderingOperator類屬於com.rapidminer.operator.preprocessing.filter.attributes包,在下文中一共展示了AttributeOrderingOperator類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: AttributeOrderingCellEditor
import com.rapidminer.operator.preprocessing.filter.attributes.AttributeOrderingOperator; //導入依賴的package包/類
public AttributeOrderingCellEditor(final ParameterTypeAttributeOrderingRules type) {
this.button = new JButton(new ResourceAction(true, "attribute_ordering") {
private static final long serialVersionUID = -4890375754223285831L;
@Override
public void loggedActionPerformed(ActionEvent e) {
if (operator == null) {
return;
}
LinkedList<String> preSelectedAttributeNames = new LinkedList<String>();
String combinedNames = null;
try {
combinedNames = operator.getParameter(type.getKey());
} catch (UndefinedParameterError er) {
}
if (combinedNames != null) {
for (String attributeName : combinedNames.split("\\|")) {
preSelectedAttributeNames.add(Tools.unmask(SEPARATION_CHAR, attributeName));
}
}
AttributeOrderingDialog dialog = new AttributeOrderingDialog(type, preSelectedAttributeNames,
operator.getParameterAsBoolean(AttributeOrderingOperator.PARAMETER_USE_REGEXP));
dialog.setVisible(true);
if (dialog.isOk()) {
StringBuilder builder = new StringBuilder();
boolean first = true;
Collection<String> attributeNames = dialog.getSelectedAttributeNames();
for (String attributeName : attributeNames) {
if (!first) {
builder.append(SEPARATION_CHAR);
}
builder.append(Tools.mask(SEPARATION_CHAR, attributeName));
first = false;
}
attributeListString = builder.toString();
fireEditingStopped();
} else {
fireEditingCanceled();
}
}
});
button.setMargin(new Insets(0, 0, 0, 0));
}
示例2: AttributeOrderingCellEditor
import com.rapidminer.operator.preprocessing.filter.attributes.AttributeOrderingOperator; //導入依賴的package包/類
public AttributeOrderingCellEditor(final ParameterTypeAttributeOrderingRules type) {
this.button = new JButton(new ResourceAction(true, "attribute_ordering") {
private static final long serialVersionUID = -4890375754223285831L;
@Override
public void actionPerformed(ActionEvent e) {
LinkedList<String> preSelectedAttributeNames = new LinkedList<String>();
String combinedNames = null;
try {
if (operator != null) {
combinedNames = operator.getParameter(type.getKey());
}
} catch (UndefinedParameterError er) {}
if (combinedNames != null) {
for (String attributeName : combinedNames.split("\\|")) {
preSelectedAttributeNames.add(Tools.unmask(SEPARATION_CHAR, attributeName));
}
}
AttributeOrderingDialog dialog = new AttributeOrderingDialog(type, preSelectedAttributeNames,
operator.getParameterAsBoolean(AttributeOrderingOperator.PARAMETER_USE_REGEXP));
dialog.setVisible(true);
if (dialog.isOk()) {
StringBuilder builder = new StringBuilder();
boolean first = true;
Collection<String> attributeNames = dialog.getSelectedAttributeNames();
for (String attributeName : attributeNames) {
if (!first) {
builder.append(SEPARATION_CHAR);
}
builder.append(Tools.mask(SEPARATION_CHAR, attributeName));
first = false;
}
attributeListString = builder.toString();
fireEditingStopped();
} else {
fireEditingCanceled();
}
}
});
button.setMargin(new Insets(0, 0, 0, 0));
}