Enum DefaultSkins
- java.lang.Object
-
- java.lang.Enum<DefaultSkins>
-
- net.lax1dude.eaglercraft.v1_8.profile.DefaultSkins
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DefaultSkins>
public enum DefaultSkins extends java.lang.Enum<DefaultSkins>
Copyright (c) 2022-2023 LAX1DUDE. All Rights Reserved. WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR. NOT FOR COMMERCIAL OR MALICIOUS USE (please read the 'LICENSE' file this repo's root directory for more info)
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static DefaultSkins[]
defaultSkinsMap
int
id
ResourceLocation
location
SkinModel
model
java.lang.String
name
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultSkins
getSkinFromId(int id)
static DefaultSkins
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultSkins[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT_STEVE
public static final DefaultSkins DEFAULT_STEVE
-
DEFAULT_ALEX
public static final DefaultSkins DEFAULT_ALEX
-
TENNIS_STEVE
public static final DefaultSkins TENNIS_STEVE
-
TENNIS_ALEX
public static final DefaultSkins TENNIS_ALEX
-
TUXEDO_STEVE
public static final DefaultSkins TUXEDO_STEVE
-
TUXEDO_ALEX
public static final DefaultSkins TUXEDO_ALEX
-
ATHLETE_STEVE
public static final DefaultSkins ATHLETE_STEVE
-
ATHLETE_ALEX
public static final DefaultSkins ATHLETE_ALEX
-
CYCLIST_STEVE
public static final DefaultSkins CYCLIST_STEVE
-
CYCLIST_ALEX
public static final DefaultSkins CYCLIST_ALEX
-
BOXER_STEVE
public static final DefaultSkins BOXER_STEVE
-
BOXER_ALEX
public static final DefaultSkins BOXER_ALEX
-
PRISONER_STEVE
public static final DefaultSkins PRISONER_STEVE
-
PRISONER_ALEX
public static final DefaultSkins PRISONER_ALEX
-
SCOTTISH_STEVE
public static final DefaultSkins SCOTTISH_STEVE
-
SCOTTISH_ALEX
public static final DefaultSkins SCOTTISH_ALEX
-
DEVELOPER_STEVE
public static final DefaultSkins DEVELOPER_STEVE
-
DEVELOPER_ALEX
public static final DefaultSkins DEVELOPER_ALEX
-
HEROBRINE
public static final DefaultSkins HEROBRINE
-
NOTCH
public static final DefaultSkins NOTCH
-
CREEPER
public static final DefaultSkins CREEPER
-
ZOMBIE
public static final DefaultSkins ZOMBIE
-
PIG
public static final DefaultSkins PIG
-
MOOSHROOM
public static final DefaultSkins MOOSHROOM
-
-
Field Detail
-
defaultSkinsMap
public static final DefaultSkins[] defaultSkinsMap
-
id
public final int id
-
name
public final java.lang.String name
-
location
public final ResourceLocation location
-
model
public final SkinModel model
-
-
Method Detail
-
values
public static DefaultSkins[] 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 (DefaultSkins c : DefaultSkins.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultSkins 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
-
getSkinFromId
public static DefaultSkins getSkinFromId(int id)
-
-