Table of Contents

Class Enum<E>

Namespace
Java.Lang
Assembly
MASES.JNet.dll
public class Enum<E> : JVMBridgeBase<Enum<E>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IEquatable<Enum<E>> where E : Enum<E>

Type Parameters

E

Enum<E>

Inheritance
Enum<E>
Implements
Derived
Inherited Members
JVMBridgeBase.ReferenceEqualsJVM(JVMBridgeBase, JVMBridgeBase)
JVMBridgeBase.Equals(IJVMBridgeBase)
Extension Methods

Constructors

Enum()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

[Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Enum()

Enum(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

[Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Enum(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

DeclaringClass

public Class DeclaringClass { get; }

Property Value

Class

IsBridgeAbstract

true if the BridgeClassName is an abstract class, i.e. cannot be created an instance

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements Closeable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

true if the BridgeClassName is an interface, i.e. does not have any public constructor

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

true if the BridgeClassName is a static class, i.e. does not have any public constructor

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

CompareTo(object)

public int CompareTo(object arg0)

Parameters

arg0 object

object

Returns

int

int

CompareTo(E)

public int CompareTo(E arg0)

Parameters

arg0 E

E

Returns

int

int

Equals(Enum<E>)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(Enum<E> other)

Parameters

other Enum<E>

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

Name()

public String Name()

Returns

String

String

Ordinal()

public int Ordinal()

Returns

int

int

ValueOf<T>(Class, String)

public static T ValueOf<T>(Class arg0, String arg1) where T : Enum<T>

Parameters

arg0 Class

Class

arg1 String

String

Returns

T

T

Type Parameters

T

Enum<E>

Operators

operator ==(Enum<E>, Enum<E>)

public static bool operator ==(Enum<E> left, Enum<E> right)

Parameters

left Enum<E>
right Enum<E>

Returns

bool

implicit operator Serializable(Enum<E>)

Converter from Enum<E> to Serializable

public static implicit operator Serializable(Enum<E> t)

Parameters

t Enum<E>

Returns

Serializable

implicit operator Comparable(Enum<E>)

Converter from Enum<E> to Comparable

public static implicit operator Comparable(Enum<E> t)

Parameters

t Enum<E>

Returns

Comparable

implicit operator Enum(Enum<E>)

Converter from Enum<E> to Enum

public static implicit operator Enum(Enum<E> t)

Parameters

t Enum<E>

Returns

Enum

operator !=(Enum<E>, Enum<E>)

public static bool operator !=(Enum<E> left, Enum<E> right)

Parameters

left Enum<E>
right Enum<E>

Returns

bool