01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * When distributing Covered Code, include this CDDL Header Notice in each file
10: * and include the License file at http://www.netbeans.org/cddl.txt.
11: * If applicable, add the following below the CDDL Header, with the fields
12: * enclosed by brackets [] replaced by your own identifying information:
13: * "Portions Copyrighted [year] [name of copyright owner]"
14: *
15: * The Original Software is NetBeans. The Initial Developer of the Original
16: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
17: * Microsystems, Inc. All Rights Reserved.
18: */
19:
20: package org.netbeans.modules.xslt.model.enums;
21:
22: /**
23: * @author ads
24: *
25: */
26: public enum Validation implements EnumValue {
27:
28: STRICT, LAX, PRESERVE, STRIP, INVALID;
29:
30: /* (non-Javadoc)
31: * @see org.netbeans.modules.xslt.model.enums.EnumValue#isInvalid()
32: */
33: /** {@inheritDoc} */
34: public boolean isInvalid() {
35: return this == INVALID;
36: }
37:
38: /*
39: * (non-Javadoc)
40: *
41: * @see java.lang.Object#toString()
42: */
43: /** {@inheritDoc} */
44: public String toString() {
45: if (isInvalid()) {
46: return "";
47: } else {
48: return super .toString().toLowerCase();
49: }
50: }
51:
52: /**
53: * Returns enum by its string value.
54: *
55: * @param str
56: * string representation.
57: * @return enum
58: */
59: public static Validation forString(String str) {
60: if (str == null) {
61: return null;
62: }
63: Validation[] validations = values();
64: for (Validation validation : validations) {
65: if (str.equals(validation.toString())) {
66: return validation;
67: }
68: }
69: return INVALID;
70: }
71:
72: }
|