Here you can find the source of getEnumAttribute(Node archiveNode, String attrName, Object[] values, Object defaultValue)
public static Object getEnumAttribute(Node archiveNode, String attrName, Object[] values, Object defaultValue)
//package com.java2s; /*/*from w w w. ja va2 s . co m*/ * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import org.w3c.dom.Node; public class Main { /** * Retrieve an attribute which value must match one of the given enums using a * case-insensitive name match. * * Returns defaultValue if the attribute does not exist or its value does not match * the given enum values. */ public static Object getEnumAttribute(Node archiveNode, String attrName, Object[] values, Object defaultValue) { Node attr = archiveNode.getAttributes().getNamedItem(attrName); if (attr != null) { String found = attr.getNodeValue(); for (Object value : values) { if (value.toString().equalsIgnoreCase(found)) { return value; } } } return defaultValue; } }