Package com.uc4.api
Enum PlatformSwHwType
- java.lang.Object
-
- java.lang.Enum<PlatformSwHwType>
-
- com.uc4.api.PlatformSwHwType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PlatformSwHwType>
public enum PlatformSwHwType extends java.lang.Enum<PlatformSwHwType>
Combined type of Platform, SW, HW of the file.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLFile is independent of Hardware/Software versions.PLUGINUNIX_AIX_ALLUNIX_AIX_POWERPCUNIX_AIX_POWERPC64UNIX_ALLUNIX_DEC_ALLUNIX_DEC_ALPHAUNIX_HPUX_ALLUNIX_HPUX_HP9000UNIX_HPUX_IA64UNIX_LINUX_ALLUNIX_LINUX_IA64UNIX_LINUX_POWERPC64UNIX_LINUX_POWERPC64LEUnix Linux PowerPCUNIX_LINUX_X64UNIX_LINUX_X86UNIX_SOLARIS_ALLUNIX_SOLARIS_SPARCUNIX_SOLARIS_SPARC64UNIX_SOLARIS_X64UNIX_SOLARIS_X86UNIX_ZLINUX_ALLUNIX_ZLINUX_ZSERIESUNIX_ZLINUX_ZSERIES64WINDOWS_ALLWINDOWS_X64WINDOWS_X86
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetHw()Return the HW.java.lang.StringgetPlatform()Return the platform.java.lang.StringgetSw()Return the SW.java.lang.StringgetValue()Returns the string-representation.static PlatformSwHwTypeparse(java.lang.String platform, java.lang.String sw, java.lang.String hw)Parse the single components Platform, SW, HW into the combined type.static PlatformSwHwTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PlatformSwHwType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final PlatformSwHwType ALL
File is independent of Hardware/Software versions.
-
UNIX_ALL
public static final PlatformSwHwType UNIX_ALL
-
UNIX_AIX_ALL
public static final PlatformSwHwType UNIX_AIX_ALL
-
UNIX_AIX_POWERPC
public static final PlatformSwHwType UNIX_AIX_POWERPC
-
UNIX_AIX_POWERPC64
public static final PlatformSwHwType UNIX_AIX_POWERPC64
-
UNIX_DEC_ALL
public static final PlatformSwHwType UNIX_DEC_ALL
-
UNIX_DEC_ALPHA
public static final PlatformSwHwType UNIX_DEC_ALPHA
-
UNIX_HPUX_ALL
public static final PlatformSwHwType UNIX_HPUX_ALL
-
UNIX_HPUX_HP9000
public static final PlatformSwHwType UNIX_HPUX_HP9000
-
UNIX_HPUX_IA64
public static final PlatformSwHwType UNIX_HPUX_IA64
-
UNIX_LINUX_ALL
public static final PlatformSwHwType UNIX_LINUX_ALL
-
UNIX_LINUX_X86
public static final PlatformSwHwType UNIX_LINUX_X86
-
UNIX_LINUX_X64
public static final PlatformSwHwType UNIX_LINUX_X64
-
UNIX_LINUX_IA64
public static final PlatformSwHwType UNIX_LINUX_IA64
-
UNIX_LINUX_POWERPC64
public static final PlatformSwHwType UNIX_LINUX_POWERPC64
-
UNIX_SOLARIS_ALL
public static final PlatformSwHwType UNIX_SOLARIS_ALL
-
UNIX_SOLARIS_SPARC
public static final PlatformSwHwType UNIX_SOLARIS_SPARC
-
UNIX_SOLARIS_SPARC64
public static final PlatformSwHwType UNIX_SOLARIS_SPARC64
-
UNIX_SOLARIS_X86
public static final PlatformSwHwType UNIX_SOLARIS_X86
-
UNIX_SOLARIS_X64
public static final PlatformSwHwType UNIX_SOLARIS_X64
-
UNIX_ZLINUX_ALL
public static final PlatformSwHwType UNIX_ZLINUX_ALL
-
UNIX_LINUX_POWERPC64LE
public static final PlatformSwHwType UNIX_LINUX_POWERPC64LE
Unix Linux PowerPC
-
UNIX_ZLINUX_ZSERIES
public static final PlatformSwHwType UNIX_ZLINUX_ZSERIES
-
UNIX_ZLINUX_ZSERIES64
public static final PlatformSwHwType UNIX_ZLINUX_ZSERIES64
-
WINDOWS_ALL
public static final PlatformSwHwType WINDOWS_ALL
-
WINDOWS_X86
public static final PlatformSwHwType WINDOWS_X86
-
WINDOWS_X64
public static final PlatformSwHwType WINDOWS_X64
-
PLUGIN
public static final PlatformSwHwType PLUGIN
-
-
Method Detail
-
values
public static PlatformSwHwType[] 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 (PlatformSwHwType c : PlatformSwHwType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlatformSwHwType 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
-
getValue
public java.lang.String getValue()
Returns the string-representation.- Returns:
- String representation
-
getPlatform
public java.lang.String getPlatform()
Return the platform.- Returns:
- The platform as
String
-
getSw
public java.lang.String getSw()
Return the SW.- Returns:
- The SW as
String
-
getHw
public java.lang.String getHw()
Return the HW.- Returns:
- The HW as
String
-
parse
public static PlatformSwHwType parse(java.lang.String platform, java.lang.String sw, java.lang.String hw)
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
-
-