Enum Wrapper.Type
- java.lang.Object
-
- java.lang.Enum<Wrapper.Type>
-
- com.enjin.minecraft_commons.spigot.wrapper.Wrapper.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Wrapper.Type>
- Enclosing class:
- Wrapper
public static enum Wrapper.Type extends java.lang.Enum<Wrapper.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Wrapper.TypefromPackage(java.lang.String className)ClassResolvergetClassResolver()static Wrapper.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Wrapper.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL
public static final Wrapper.Type GENERAL
-
NMS
public static final Wrapper.Type NMS
-
OBC
public static final Wrapper.Type OBC
-
-
Method Detail
-
values
public static Wrapper.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Wrapper.Type c : Wrapper.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Wrapper.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromPackage
public static Wrapper.Type fromPackage(java.lang.String className)
-
getClassResolver
public ClassResolver getClassResolver()
-
-