@GwtIncompatible public enum StandardSystemProperty extends Enum<StandardSystemProperty>
| Enum Constant and Description | 
|---|
| FILE_SEPARATORFile separator ("/" on UNIX). | 
| JAVA_CLASS_PATHJava class path. | 
| JAVA_CLASS_VERSIONJava class format version number. | 
| JAVA_COMPILERName of JIT compiler to use. | 
| JAVA_EXT_DIRSPath of extension directory or directories. | 
| JAVA_HOMEJava installation directory. | 
| JAVA_IO_TMPDIRDefault temp file path. | 
| JAVA_LIBRARY_PATHList of paths to search when loading libraries. | 
| JAVA_SPECIFICATION_NAMEJava Runtime Environment specification name. | 
| JAVA_SPECIFICATION_VENDORJava Runtime Environment specification vendor. | 
| JAVA_SPECIFICATION_VERSIONJava Runtime Environment specification version. | 
| JAVA_VENDORJava Runtime Environment vendor. | 
| JAVA_VENDOR_URLJava vendor URL. | 
| JAVA_VERSIONJava Runtime Environment version. | 
| JAVA_VM_NAMEJava Virtual Machine implementation name. | 
| JAVA_VM_SPECIFICATION_NAMEJava Virtual Machine specification name. | 
| JAVA_VM_SPECIFICATION_VENDORJava Virtual Machine specification vendor. | 
| JAVA_VM_SPECIFICATION_VERSIONJava Virtual Machine specification version. | 
| JAVA_VM_VENDORJava Virtual Machine implementation vendor. | 
| JAVA_VM_VERSIONJava Virtual Machine implementation version. | 
| LINE_SEPARATORLine separator ("\n" on UNIX). | 
| OS_ARCHOperating system architecture. | 
| OS_NAMEOperating system name. | 
| OS_VERSIONOperating system version. | 
| PATH_SEPARATORPath separator (":" on UNIX). | 
| USER_DIRUser's current working directory. | 
| USER_HOMEUser's home directory. | 
| USER_NAMEUser's account name. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | key()Returns the key used to lookup this system property. | 
| String | toString()Returns a string representation of this system property. | 
| String | value()Returns the current value for this system property by delegating to
  System.getProperty(String). | 
| static StandardSystemProperty | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static StandardSystemProperty[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final StandardSystemProperty JAVA_VERSION
public static final StandardSystemProperty JAVA_VENDOR
public static final StandardSystemProperty JAVA_VENDOR_URL
public static final StandardSystemProperty JAVA_HOME
public static final StandardSystemProperty JAVA_VM_SPECIFICATION_VERSION
public static final StandardSystemProperty JAVA_VM_SPECIFICATION_VENDOR
public static final StandardSystemProperty JAVA_VM_SPECIFICATION_NAME
public static final StandardSystemProperty JAVA_VM_VERSION
public static final StandardSystemProperty JAVA_VM_VENDOR
public static final StandardSystemProperty JAVA_VM_NAME
public static final StandardSystemProperty JAVA_SPECIFICATION_VERSION
public static final StandardSystemProperty JAVA_SPECIFICATION_VENDOR
public static final StandardSystemProperty JAVA_SPECIFICATION_NAME
public static final StandardSystemProperty JAVA_CLASS_VERSION
public static final StandardSystemProperty JAVA_CLASS_PATH
public static final StandardSystemProperty JAVA_LIBRARY_PATH
public static final StandardSystemProperty JAVA_IO_TMPDIR
public static final StandardSystemProperty JAVA_COMPILER
public static final StandardSystemProperty JAVA_EXT_DIRS
public static final StandardSystemProperty OS_NAME
public static final StandardSystemProperty OS_ARCH
public static final StandardSystemProperty OS_VERSION
public static final StandardSystemProperty FILE_SEPARATOR
public static final StandardSystemProperty PATH_SEPARATOR
public static final StandardSystemProperty LINE_SEPARATOR
public static final StandardSystemProperty USER_NAME
public static final StandardSystemProperty USER_HOME
public static final StandardSystemProperty USER_DIR
public static StandardSystemProperty[] values()
for (StandardSystemProperty c : StandardSystemProperty.values()) System.out.println(c);
public static StandardSystemProperty valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null@Nullable public String value()
System.getProperty(String).public String toString()
toString in class Enum<StandardSystemProperty>Copyright © 2010–2017. All rights reserved.