Package com.uc4.api
Enum Class PlatformSwHwType
- All Implemented Interfaces:
Serializable
,Comparable<PlatformSwHwType>
,Constable
Combined type of Platform, SW, HW of the file.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFile is independent of Hardware/Software versions.Unix Linux PowerPC -
Method Summary
Modifier and TypeMethodDescriptiongetHw()
Return the HW.Return the platform.getSw()
Return the SW.getValue()
Returns the string-representation.static PlatformSwHwType
Parse the single components Platform, SW, HW into the combined type.static PlatformSwHwType
Returns the enum constant of this class with the specified name.static PlatformSwHwType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
File is independent of Hardware/Software versions. -
UNIX_ALL
-
UNIX_AIX_ALL
-
UNIX_AIX_POWERPC
-
UNIX_AIX_POWERPC64
-
UNIX_DEC_ALL
-
UNIX_DEC_ALPHA
-
UNIX_HPUX_ALL
-
UNIX_HPUX_HP9000
-
UNIX_HPUX_IA64
-
UNIX_LINUX_ALL
-
UNIX_LINUX_X86
-
UNIX_LINUX_X64
-
UNIX_LINUX_IA64
-
UNIX_LINUX_POWERPC64
-
UNIX_SOLARIS_ALL
-
UNIX_SOLARIS_SPARC
-
UNIX_SOLARIS_SPARC64
-
UNIX_SOLARIS_X86
-
UNIX_SOLARIS_X64
-
UNIX_ZLINUX_ALL
-
UNIX_LINUX_POWERPC64LE
Unix Linux PowerPC -
UNIX_ZLINUX_ZSERIES
-
UNIX_ZLINUX_ZSERIES64
-
WINDOWS_ALL
-
WINDOWS_X86
-
WINDOWS_X64
-
PLUGIN
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
Returns the string-representation.- Returns:
- String representation
-
getPlatform
Return the platform.- Returns:
- The platform as
String
-
getSw
Return the SW.- Returns:
- The SW as
String
-
getHw
Return the HW.- Returns:
- The HW as
String
-
parse
Parse the single components Platform, SW, HW into the combined type.- Parameters:
platform
- Platform as Stringsw
- Software as Stringhw
- Hardware as String- Returns:
- Combined type of Platform_SW_HW, null if it cannot be parsed
-