Package net.minecraft.util
Enum Session.Type
- java.lang.Object
-
- java.lang.Enum<Session.Type>
-
- net.minecraft.util.Session.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Session.Type>
- Enclosing class:
- Session
public static enum Session.Type extends java.lang.Enum<Session.Type>
-
-
Field Summary
Fields Modifier and Type Field Description private static java.util.Map<java.lang.String,Session.Type>
BY_NAME
private java.lang.String
name
-
Constructor Summary
Constructors Modifier Constructor Description private
Type(java.lang.String p_i1096_3_)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Session.Type
byName(java.lang.String p_152421_0_)
static Session.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Session.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEGACY
public static final Session.Type LEGACY
-
MOJANG
public static final Session.Type MOJANG
-
-
Field Detail
-
BY_NAME
private static final java.util.Map<java.lang.String,Session.Type> BY_NAME
-
name
private final java.lang.String name
-
-
Method Detail
-
values
public static Session.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 (Session.Type c : Session.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 Session.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
-
byName
@Nullable public static Session.Type byName(java.lang.String p_152421_0_)
-
-