java.lang.Object |
↳ |
java.lang.Enum<E extends java.lang.Enum<E>> |
|
↳ |
com.atlassian.bitbucket.server.OperatingSystem |
Class Overview
Enumerates possible operating systems.
Operating systems are classified loosely. For example, individual versions of macOS and Windows are not considered
distinct, and Linux distributions are not differentiated.
If the system is started on an unsupported operating system, like FreeBSD or Solaris, the operating system
will be reported as LINUX
.
Summary
Enum Values |
OperatingSystem |
LINUX |
Linux-based operating systems. |
OperatingSystem |
MAC_OS |
Mac-based operating systems. |
OperatingSystem |
WINDOWS |
Windows-based operating systems. |
[Expand]
Inherited Methods |
From class
java.lang.Enum
final
Object
|
clone()
|
final
int
|
compareTo(E arg0)
|
int
|
compareTo(Object arg0)
|
final
boolean
|
equals(Object arg0)
|
final
void
|
finalize()
|
final
Class<E>
|
getDeclaringClass()
|
final
int
|
hashCode()
|
final
String
|
name()
|
final
int
|
ordinal()
|
String
|
toString()
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Comparable
|
Enum Values
Linux-based operating systems.
Note: Any operating system that isn't macOS
or Windows
or Linux,
like FreeBSD or Solaris, will be reported as Linux.
Mac-based operating systems.
Windows-based operating systems.
Public Methods