本文整理汇总了Java中org.apache.commons.lang3.ArrayUtils.removeElement方法的典型用法代码示例。如果您正苦于以下问题:Java ArrayUtils.removeElement方法的具体用法?Java ArrayUtils.removeElement怎么用?Java ArrayUtils.removeElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.lang3.ArrayUtils
的用法示例。
在下文中一共展示了ArrayUtils.removeElement方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDefinitionByClass
import org.apache.commons.lang3.ArrayUtils; //导入方法依赖的package包/类
private Definition getDefinitionByClass(Class<?> cls, String className, Definition rootDefinition)
throws ParserException {
Field[] fields = cls.getDeclaredFields();
// if cls is enum, remove the values field
if (cls.isEnum()) {
for (int i = fields.length - 1; i >= 0; i--) {
if (!fields[i].isEnumConstant()) {
fields = ArrayUtils.removeElement(fields, fields[i]);
break;
}
}
}
Definition definition = new Definition();
definition.setClassName(className);
if (rootDefinition == null) {
rootDefinition = definition;
}
List<Property> properties = processFields(fields, definition, rootDefinition);
definition.setProperties(properties);
return definition;
}
示例2: getFlowDefinitionIds
import org.apache.commons.lang3.ArrayUtils; //导入方法依赖的package包/类
/**
* Gets flow definition ids.
*
* @param excludedFlowIds the excluded flow ids
* @return the flow definition ids
*/
protected List<String> getFlowDefinitionIds(final String[] excludedFlowIds) {
String[] flowIds = loginFlowDefinitionRegistry.getFlowDefinitionIds();
for (final String flowId : excludedFlowIds) {
flowIds = ArrayUtils.removeElement(flowIds, flowId);
}
return Arrays.asList(flowIds);
}
示例3: removeButton
import org.apache.commons.lang3.ArrayUtils; //导入方法依赖的package包/类
@Action
public void removeButton() {
if (list.getSelectedIndex() != -1) {
breaks = (QBreak[]) ArrayUtils.removeElement(breaks, list.getSelectedValue());
QBreaksList.getInstance().addBreakForDelete((QBreak) list.getSelectedValue());
loadBreaks(breaks);
}
}