Class Enum
public class Enum : JVMBridgeBase<Enum>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IEquatable<Enum>
- Inheritance
-
Enum
- Implements
- Inherited Members
-
JVMBridgeBase<Enum>.SExecuteWithSignature<TReturn>(Type, IJavaType, string, string, params object[])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(Enum)
public int CompareTo(Enum arg0)
Parameters
Returns
CompareTo(object)
public int CompareTo(object arg0)
Parameters
Returns
Equals(Enum)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Enum other)
Parameters
other
EnumAn 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(Class, String)
public static Enum ValueOf(Class arg0, String arg1)
Parameters
Returns
Operators
operator ==(Enum, Enum)
public static bool operator ==(Enum left, Enum right)
Parameters
Returns
implicit operator Serializable(Enum)
Converter from Enum to Serializable
public static implicit operator Serializable(Enum t)
Parameters
t
Enum
Returns
implicit operator Comparable(Enum)
Converter from Enum to Comparable
public static implicit operator Comparable(Enum t)
Parameters
t
Enum
Returns
operator !=(Enum, Enum)
public static bool operator !=(Enum left, Enum right)