Class Enum<E>
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
- Inheritance
-
JVMBridgeBase<Enum<E>>Enum<E>
- Implements
-
IEquatable<Enum<E>>
- 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
DeclaringClass
https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html#getDeclaringClass()
public Class DeclaringClass { get; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
Methods
CompareTo(object)
public int CompareTo(object arg0)
Parameters
Returns
CompareTo(E)
public int CompareTo(E arg0)
Parameters
arg0
EE
Returns
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
objectThe 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
Ordinal()
public int Ordinal()
Returns
ValueOf<T>(Class, String)
public static T ValueOf<T>(Class arg0, String arg1) where T : Enum<T>
Parameters
Returns
- T
T
Type Parameters
T
Operators
operator ==(Enum<E>, Enum<E>)
public static bool operator ==(Enum<E> left, Enum<E> right)
Parameters
Returns
implicit operator Serializable(Enum<E>)
Converter from Enum<E> to Serializable
public static implicit operator Serializable(Enum<E> t)
Parameters
t
Enum<E>
Returns
implicit operator Comparable(Enum<E>)
Converter from Enum<E> to Comparable
public static implicit operator Comparable(Enum<E> t)
Parameters
t
Enum<E>
Returns
implicit operator Enum(Enum<E>)
public static implicit operator Enum(Enum<E> t)
Parameters
t
Enum<E>
Returns
operator !=(Enum<E>, Enum<E>)
public static bool operator !=(Enum<E> left, Enum<E> right)