Package in.dragonbra.javasteam.enums
Enum EDRMBlobDownloadType
- java.lang.Object
-
- java.lang.Enum<EDRMBlobDownloadType>
-
- in.dragonbra.javasteam.enums.EDRMBlobDownloadType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EDRMBlobDownloadType>
public enum EDRMBlobDownloadType extends java.lang.Enum<EDRMBlobDownloadType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AddTimestampAllMaskCompressedErrorFileHighPriorityIsJobLowPriorityParts
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcode()static intcode(java.util.EnumSet<EDRMBlobDownloadType> flags)static java.util.EnumSet<EDRMBlobDownloadType>from(int code)static EDRMBlobDownloadTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EDRMBlobDownloadType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Error
public static final EDRMBlobDownloadType Error
-
File
public static final EDRMBlobDownloadType File
-
Parts
public static final EDRMBlobDownloadType Parts
-
Compressed
public static final EDRMBlobDownloadType Compressed
-
AllMask
public static final EDRMBlobDownloadType AllMask
-
IsJob
public static final EDRMBlobDownloadType IsJob
-
HighPriority
public static final EDRMBlobDownloadType HighPriority
-
AddTimestamp
public static final EDRMBlobDownloadType AddTimestamp
-
LowPriority
public static final EDRMBlobDownloadType LowPriority
-
-
Method Detail
-
values
public static EDRMBlobDownloadType[] 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 (EDRMBlobDownloadType c : EDRMBlobDownloadType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EDRMBlobDownloadType 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 java.util.EnumSet<EDRMBlobDownloadType> from(int code)
-
code
public static int code(java.util.EnumSet<EDRMBlobDownloadType> flags)
-
-