1 /*
2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3  *
4  * This code is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 2 only, as
6  * published by the Free Software Foundation.  Oracle designates this
7  * particular file as subject to the "Classpath" exception as provided
8  * by Oracle in the LICENSE file that accompanied this code.
9  *
10  * This code is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * version 2 for more details (a copy is included in the LICENSE file that
14  * accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License version
17  * 2 along with this work; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21  * or visit www.oracle.com if you need additional information or have any
22  * questions.
23  */
24 
25 /*
26  * Copyright (c) 2009 by Oracle Corporation. All Rights Reserved.
27  */
28 
29 /*
30  * $Id: PropertyState.java 3024 2011-03-01 03:46:13Z joehw $
31  */
32 package com.sun.org.apache.xerces.internal.util;
33 
34 public class PropertyState {
35 
36     public final Status status;
37     public final Object state;
38 
39     public static final PropertyState UNKNOWN = new PropertyState(Status.UNKNOWN, null);
40     public static final PropertyState RECOGNIZED = new PropertyState(Status.RECOGNIZED, null);
41     public static final PropertyState NOT_SUPPORTED = new PropertyState(Status.NOT_SUPPORTED, null);
42     public static final PropertyState NOT_RECOGNIZED = new PropertyState(Status.NOT_RECOGNIZED, null);
43     public static final PropertyState NOT_ALLOWED = new PropertyState(Status.NOT_ALLOWED, null);
44 
45 
PropertyState(Status status, Object state)46     public PropertyState(Status status, Object state) {
47         this.status = status;
48         this.state = state;
49     }
50 
of(Status status)51     public static PropertyState of(Status status) {
52         return new PropertyState(status, null);
53     }
54 
is(Object value)55     public static PropertyState is(Object value) {
56         return new PropertyState(Status.SET, value);
57     }
58 
isExceptional()59     public boolean isExceptional() {
60         return this.status.isExceptional();
61     }
62 }
63