Package in.dragonbra.javasteam.enums
Enum EWorkshopFileType
- java.lang.Object
-
- java.lang.Enum<EWorkshopFileType>
-
- in.dragonbra.javasteam.enums.EWorkshopFileType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EWorkshopFileType>
public enum EWorkshopFileType extends java.lang.Enum<EWorkshopFileType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ArtCollectionCommunityConceptControllerBindingFirstGameGameManagedItemIntegratedGuideMerchMicrotransactionScreenshotSoftwareSteamVideoSteamworksAccessInviteVideoWebGuide
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcode()static EWorkshopFileTypefrom(int code)static EWorkshopFileTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EWorkshopFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
First
public static final EWorkshopFileType First
-
Community
public static final EWorkshopFileType Community
-
Microtransaction
public static final EWorkshopFileType Microtransaction
-
Collection
public static final EWorkshopFileType Collection
-
Art
public static final EWorkshopFileType Art
-
Video
public static final EWorkshopFileType Video
-
Screenshot
public static final EWorkshopFileType Screenshot
-
Game
public static final EWorkshopFileType Game
-
Software
public static final EWorkshopFileType Software
-
Concept
public static final EWorkshopFileType Concept
-
WebGuide
public static final EWorkshopFileType WebGuide
-
IntegratedGuide
public static final EWorkshopFileType IntegratedGuide
-
Merch
public static final EWorkshopFileType Merch
-
ControllerBinding
public static final EWorkshopFileType ControllerBinding
-
SteamworksAccessInvite
public static final EWorkshopFileType SteamworksAccessInvite
-
SteamVideo
public static final EWorkshopFileType SteamVideo
-
GameManagedItem
public static final EWorkshopFileType GameManagedItem
-
-
Method Detail
-
values
public static EWorkshopFileType[] 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 (EWorkshopFileType c : EWorkshopFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EWorkshopFileType 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
-
code
public int code()
-
from
public static EWorkshopFileType from(int code)
-
-