當前位置: 首頁>>代碼示例>>Java>>正文


Java AttributeOrderingOperator類代碼示例

本文整理匯總了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));
}
 
開發者ID:rapidminer,項目名稱:rapidminer-studio,代碼行數:45,代碼來源:AttributeOrderingCellEditor.java

示例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));
}
 
開發者ID:rapidminer,項目名稱:rapidminer-5,代碼行數:43,代碼來源:AttributeOrderingCellEditor.java


注:本文中的com.rapidminer.operator.preprocessing.filter.attributes.AttributeOrderingOperator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。