Package ome.formats.importer
Enum ImportConfig.VersionInfo
- java.lang.Object
-
- java.lang.Enum<ImportConfig.VersionInfo>
-
- ome.formats.importer.ImportConfig.VersionInfo
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ImportConfig.VersionInfo>
- Enclosing class:
- ImportConfig
public static enum ImportConfig.VersionInfo extends java.lang.Enum<ImportConfig.VersionInfo>
Keys for fileset version information entries.- Since:
- 5.1
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIO_FORMATS_READERBIO_FORMATS_VERSIONCLIENT_LANGUAGE_COMPILERCLIENT_LANGUAGE_NAMECLIENT_LANGUAGE_VENDORCLIENT_LANGUAGE_VERSIONLOCALEOMERO_VERSIONOS_ARCHITECTUREOS_NAMEOS_VERSION
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringkeythe map key corresponding to this instance
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImportConfig.VersionInfovalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ImportConfig.VersionInfo[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIO_FORMATS_READER
public static final ImportConfig.VersionInfo BIO_FORMATS_READER
-
BIO_FORMATS_VERSION
public static final ImportConfig.VersionInfo BIO_FORMATS_VERSION
-
CLIENT_LANGUAGE_NAME
public static final ImportConfig.VersionInfo CLIENT_LANGUAGE_NAME
-
CLIENT_LANGUAGE_VENDOR
public static final ImportConfig.VersionInfo CLIENT_LANGUAGE_VENDOR
-
CLIENT_LANGUAGE_COMPILER
public static final ImportConfig.VersionInfo CLIENT_LANGUAGE_COMPILER
-
CLIENT_LANGUAGE_VERSION
public static final ImportConfig.VersionInfo CLIENT_LANGUAGE_VERSION
-
OMERO_VERSION
public static final ImportConfig.VersionInfo OMERO_VERSION
-
OS_NAME
public static final ImportConfig.VersionInfo OS_NAME
-
OS_VERSION
public static final ImportConfig.VersionInfo OS_VERSION
-
OS_ARCHITECTURE
public static final ImportConfig.VersionInfo OS_ARCHITECTURE
-
LOCALE
public static final ImportConfig.VersionInfo LOCALE
-
-
Method Detail
-
values
public static ImportConfig.VersionInfo[] 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 (ImportConfig.VersionInfo c : ImportConfig.VersionInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImportConfig.VersionInfo 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
-
-