Class NetArrayList
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- org.mases.jcobridge.netreflection.NetArrayList
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class NetArrayList extends NetObject
The base .NET class managing System.Collections.ArrayList, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089. ExtendsNetObject.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNamestatic java.lang.StringassemblyShortNamestatic java.lang.StringclassNamestatic JCTypeclassType
-
Constructor Summary
Constructors Constructor Description NetArrayList()NetArrayList(int capacity)NetArrayList(java.lang.Object instance)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intAdd(NetObject value)intBinarySearch(NetObject value)static NetArrayListcastFrom(IJCOBridgeReflected from)NetObjectClone()booleanContains(NetObject item)static NetArrayListFixedSize(NetArrayList list)intgetCapacity()intgetCount()booleangetIsFixedSize()booleangetIsReadOnly()booleangetIsSynchronized()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeNetArrayListGetRange(int index, int count)NetObjectgetSyncRoot()intIndexOf(NetObject value)intIndexOf(NetObject value, int startIndex)intIndexOf(NetObject value, int startIndex, int count)voidInsert(int index, NetObject value)intLastIndexOf(NetObject value)intLastIndexOf(NetObject value, int startIndex)intLastIndexOf(NetObject value, int startIndex, int count)static NetArrayListReadOnly(NetArrayList list)voidRemove(NetObject obj)voidRemoveAt(int index)voidRemoveRange(int index, int count)static NetArrayListRepeat(NetObject value, int count)voidReverse()voidReverse(int index, int count)voidsetCapacity(int Capacity)static NetArrayListSynchronized(NetArrayList list)-
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
- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
- See Also:
- Constant Field Values
-
classType
public static JCType classType
-
-
Constructor Detail
-
NetArrayList
public NetArrayList(java.lang.Object instance) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
NetArrayList
public NetArrayList() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
NetArrayList
public NetArrayList(int capacity) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classNetObject- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classNetObject- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classNetObject- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
castFrom
public static NetArrayList castFrom(IJCOBridgeReflected from) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Add
public int Add(NetObject value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
BinarySearch
public int BinarySearch(NetObject value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Clone
public NetObject Clone() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Contains
public boolean Contains(NetObject item) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
FixedSize
public static NetArrayList FixedSize(NetArrayList list) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IndexOf
public int IndexOf(NetObject value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IndexOf
public int IndexOf(NetObject value, int startIndex) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IndexOf
public int IndexOf(NetObject value, int startIndex, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Insert
public void Insert(int index, NetObject value) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
LastIndexOf
public int LastIndexOf(NetObject value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
LastIndexOf
public int LastIndexOf(NetObject value, int startIndex) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ReadOnly
public static NetArrayList ReadOnly(NetArrayList list) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Remove
public void Remove(NetObject obj) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
RemoveAt
public void RemoveAt(int index) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
RemoveRange
public void RemoveRange(int index, int count) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Repeat
public static NetArrayList Repeat(NetObject value, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Reverse
public void Reverse() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Reverse
public void Reverse(int index, int count) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Synchronized
public static NetArrayList Synchronized(NetArrayList list) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
LastIndexOf
public int LastIndexOf(NetObject value, int startIndex, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetRange
public NetArrayList GetRange(int index, int count) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCapacity
public int getCapacity() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setCapacity
public void setCapacity(int Capacity) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getCount
public int getCount() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getIsFixedSize
public boolean getIsFixedSize() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getIsReadOnly
public boolean getIsReadOnly() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getIsSynchronized
public boolean getIsSynchronized() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getSyncRoot
public NetObject getSyncRoot() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-