All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.lang.Enum Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
/*
 * Copyright 2016 Carlos Ballesteros Velasco
 *
 * 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 java.io.Serializable;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.Objects;

public abstract class Enum> implements Comparable, Serializable {
	private final String name;

	public final String name() {
		return name;
	}

	private final int ordinal;

	public final int ordinal() {
		return ordinal;
	}

	protected Enum(String name, int ordinal) {
		this.name = name;
		this.ordinal = ordinal;
	}

	public String toString() {
		return name;
	}

	public final boolean equals(Object other) {
		return this == other;
	}

	public final int hashCode() {
		return super.hashCode();
	}

	protected final Object clone() throws CloneNotSupportedException {
		throw new CloneNotSupportedException();
	}

	public final int compareTo(E o) {
		Enum other = o;
		Enum self = this;
		if (self.getClass() != other.getClass() && self.getDeclaringClass() != other.getDeclaringClass()) {
			throw new ClassCastException();
		}
		return self.ordinal - other.ordinal;
	}

	public final Class getDeclaringClass() {
		Class clazz = getClass();
		Class zuper = clazz.getSuperclass();
		return (zuper == Enum.class) ? (Class) clazz : (Class) zuper;
	}

	public static > T valueOf(Class enumType, String name) {
		for (Field field : enumType.getDeclaredFields()) {
			if (Objects.equals(field.getName(), name)) {
				//if (Modifier.isStatic(field.getModifiers())) {
					//if (Objects.equals(field.getType(), enumType)) {
						try {
							return (T) field.get(null);
						} catch (IllegalAccessException e) {
							e.printStackTrace();
						}
				//	}
				//}
			}
		}
		return null;
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy