Class Characteristics
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.reflection.portableexecutable.Characteristics
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Characteristics extends NetObject
The base .NET class managing System.Reflection.PortableExecutable.Characteristics, System.Reflection.Metadata, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Reflection.PortableExecutable.Characteristics
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 Characteristics
AggressiveWSTrim
static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Reflection.Metadata, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Reflection.Metadatastatic Characteristics
Bit32Machine
static Characteristics
BytesReversedHi
static Characteristics
BytesReversedLo
static java.lang.String
className
Qualified class name: System.Reflection.PortableExecutable.Characteristicsstatic JCType
classType
The type managed from JCOBridge.static Characteristics
DebugStripped
static Characteristics
Dll
static Characteristics
ExecutableImage
static Characteristics
LargeAddressAware
static Characteristics
LineNumsStripped
static Characteristics
LocalSymsStripped
static Characteristics
NetRunFromSwap
static Characteristics
RelocsStripped
static Characteristics
RemovableRunFromSwap
static Characteristics
System
static Characteristics
UpSystemOnly
-
Constructor Summary
Constructors Constructor Description Characteristics()
Characteristics(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Characteristics
add(Characteristics val)
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 Typeboolean
has(Characteristics val)
boolean
is(Characteristics val)
Characteristics
remove(Characteristics val)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
cast, Equals, Equals, GetHashCode, GetType, hashCode, setJCOInstance, toString, ToString
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Reflection.Metadata, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Reflection.Metadata- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Reflection.PortableExecutable.Characteristics- See Also:
- Constant Field Values
-
RelocsStripped
public static Characteristics RelocsStripped
-
ExecutableImage
public static Characteristics ExecutableImage
-
LineNumsStripped
public static Characteristics LineNumsStripped
-
LocalSymsStripped
public static Characteristics LocalSymsStripped
-
AggressiveWSTrim
public static Characteristics AggressiveWSTrim
-
LargeAddressAware
public static Characteristics LargeAddressAware
-
BytesReversedLo
public static Characteristics BytesReversedLo
-
Bit32Machine
public static Characteristics Bit32Machine
-
DebugStripped
public static Characteristics DebugStripped
-
RemovableRunFromSwap
public static Characteristics RemovableRunFromSwap
-
NetRunFromSwap
public static Characteristics NetRunFromSwap
-
System
public static Characteristics System
-
Dll
public static Characteristics Dll
-
UpSystemOnly
public static Characteristics UpSystemOnly
-
BytesReversedHi
public static Characteristics BytesReversedHi
-
-
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
-
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
-
add
public final Characteristics add(Characteristics val) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
remove
public final Characteristics remove(Characteristics val) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
is
public final boolean is(Characteristics val) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
has
public final boolean has(Characteristics val) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-