Package system
Class OperatingSystem
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.OperatingSystem
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class OperatingSystem extends NetObject
The base .NET class managing System.OperatingSystem, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.OperatingSystem
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic java.lang.String
assemblyShortName
Assembly name: System.Private.CoreLibstatic java.lang.String
className
Qualified class name: System.OperatingSystemstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description OperatingSystem()
OperatingSystem(java.lang.Object instance)
Internal constructor.OperatingSystem(PlatformID platform, Version version)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperatingSystem
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoOperatingSystem
, a cast assert is made to check if types are compatible.NetObject
Clone()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typevoid
GetObjectData(SerializationInfo info, StreamingContext context)
PlatformID
getPlatform()
java.lang.String
getServicePack()
Version
getVersion()
java.lang.String
getVersionString()
static boolean
IsAndroid()
static boolean
IsAndroidVersionAtLeast(int major, int minor, int build, int revision)
static boolean
IsBrowser()
static boolean
IsFreeBSD()
static boolean
IsFreeBSDVersionAtLeast(int major, int minor, int build, int revision)
static boolean
IsIOS()
static boolean
IsIOSVersionAtLeast(int major, int minor, int build)
static boolean
IsLinux()
static boolean
IsMacCatalyst()
static boolean
IsMacCatalystVersionAtLeast(int major, int minor, int build)
static boolean
IsMacOS()
static boolean
IsMacOSVersionAtLeast(int major, int minor, int build)
static boolean
IsOSPlatform(java.lang.String platform)
static boolean
IsOSPlatformVersionAtLeast(java.lang.String platform, int major, int minor, int build, int revision)
static boolean
IsTvOS()
static boolean
IsTvOSVersionAtLeast(int major, int minor, int build)
static boolean
IsWasi()
static boolean
IsWatchOS()
static boolean
IsWatchOSVersionAtLeast(int major, int minor, int build)
static boolean
IsWindows()
static boolean
IsWindowsVersionAtLeast(int major, int minor, int build, int revision)
void
setJCOInstance(JCObject instance)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.OperatingSystem- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OperatingSystem
public OperatingSystem(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
OperatingSystem
public OperatingSystem() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
OperatingSystem
public OperatingSystem(PlatformID platform, Version version) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static OperatingSystem cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoOperatingSystem
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
OperatingSystem
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsAndroid
public static boolean IsAndroid() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsAndroidVersionAtLeast
public static boolean IsAndroidVersionAtLeast(int major, int minor, int build, int revision) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsBrowser
public static boolean IsBrowser() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsFreeBSD
public static boolean IsFreeBSD() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsFreeBSDVersionAtLeast
public static boolean IsFreeBSDVersionAtLeast(int major, int minor, int build, int revision) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsIOS
public static boolean IsIOS() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsIOSVersionAtLeast
public static boolean IsIOSVersionAtLeast(int major, int minor, int build) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsLinux
public static boolean IsLinux() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsMacCatalyst
public static boolean IsMacCatalyst() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsMacCatalystVersionAtLeast
public static boolean IsMacCatalystVersionAtLeast(int major, int minor, int build) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsMacOS
public static boolean IsMacOS() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsMacOSVersionAtLeast
public static boolean IsMacOSVersionAtLeast(int major, int minor, int build) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsOSPlatform
public static boolean IsOSPlatform(java.lang.String platform) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, OutOfMemoryException, ExternalException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
CultureNotFoundException
OutOfMemoryException
ExternalException
-
IsOSPlatformVersionAtLeast
public static boolean IsOSPlatformVersionAtLeast(java.lang.String platform, int major, int minor, int build, int revision) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, OutOfMemoryException, ExternalException
-
IsTvOS
public static boolean IsTvOS() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsTvOSVersionAtLeast
public static boolean IsTvOSVersionAtLeast(int major, int minor, int build) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsWasi
public static boolean IsWasi() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsWatchOS
public static boolean IsWatchOS() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsWatchOSVersionAtLeast
public static boolean IsWatchOSVersionAtLeast(int major, int minor, int build) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsWindows
public static boolean IsWindows() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsWindowsVersionAtLeast
public static boolean IsWindowsVersionAtLeast(int major, int minor, int build, int revision) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Clone
public NetObject Clone() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetObjectData
public void GetObjectData(SerializationInfo info, StreamingContext context) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
getPlatform
public PlatformID getPlatform() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getServicePack
public java.lang.String getServicePack() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getVersionString
public java.lang.String getVersionString() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, FormatException, OverflowException
-
getVersion
public Version getVersion() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-