com.google.gwt.emul.java.lang.Enum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2008 Google Inc.
*
* 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.
*/
package java.lang;
import static com.google.gwt.core.shared.impl.InternalPreconditions.checkCriticalArgument;
import static com.google.gwt.core.shared.impl.InternalPreconditions.checkNotNull;
import com.google.gwt.core.client.JavaScriptObject;
import java.io.Serializable;
/**
* The first-class representation of an enumeration.
*
* @param
*/
public abstract class Enum> implements Comparable,
Serializable {
public static > T valueOf(Class enumType, String name) {
JavaScriptObject enumValueOfFunc = enumType.enumValueOfFunc;
checkCriticalArgument(enumValueOfFunc != null);
return invokeValueOf(enumValueOfFunc, name);
}
protected static > JavaScriptObject createValueOfMap(
T[] enumConstants) {
JavaScriptObject result = JavaScriptObject.createObject();
for (T value : enumConstants) {
put0(result, ":" + value.name(), value);
}
return result;
}
protected static > T valueOf(JavaScriptObject map, String name) {
checkNotNull(name);
T result = Enum. get0(map, ":" + name);
checkCriticalArgument(result != null, "Enum constant undefined: %s", name);
return result;
}
private static native > T get0(JavaScriptObject map,
String name) /*-{
return map[name];
}-*/;
private static native > T invokeValueOf(
JavaScriptObject enumValueOfFunc, String name) /*-{
return enumValueOfFunc(name);
}-*/;
private static native > void put0(JavaScriptObject map,
String name, T value) /*-{
map[name] = value;
}-*/;
private final String name;
private final int ordinal;
protected Enum(String name, int ordinal) {
this.name = name;
this.ordinal = ordinal;
}
public final int compareTo(E other) {
// TODO: will a bridge method do the cast for us?
// if (this.getDeclaringClass() != other.getDeclaringClass()) {
// throw new ClassCastException();
// }
return this.ordinal - ((Enum) other).ordinal;
}
@Override
public final boolean equals(Object other) {
return this == other;
}
@SuppressWarnings("unchecked")
public final Class getDeclaringClass() {
Class clazz = getClass();
assert clazz != null : "clazz";
// Don't use getSuperclass() to allow that method to be pruned for most
// class types
Class superclass = clazz.getEnumSuperclass();
assert superclass != null : "superclass";
return (superclass == Enum.class) ? clazz : superclass;
}
@Override
public final int hashCode() {
return super.hashCode();
}
public final String name() {
return name != null ? name : "" + ordinal;
}
public final int ordinal() {
return ordinal;
}
@Override
public String toString() {
return name();
}
}