Package system.configuration
Class CommaDelimitedStringCollection
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- org.mases.jcobridge.netreflection.NetObjectEnumerable
-
- system.collections.specialized.StringCollection
-
- system.configuration.CommaDelimitedStringCollection
-
- All Implemented Interfaces:
java.lang.Iterable<NetObject>
,IEnumerable
,IJCOBridgeReflected
public class CommaDelimitedStringCollection extends StringCollection
The base .NET class managing System.Configuration.CommaDelimitedStringCollection, System.Configuration.ConfigurationManager, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Configuration.CommaDelimitedStringCollection
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 java.lang.String
assemblyFullName
Fully assembly qualified name: System.Configuration.ConfigurationManager, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51static java.lang.String
assemblyShortName
Assembly name: System.Configuration.ConfigurationManagerstatic java.lang.String
className
Qualified class name: System.Configuration.CommaDelimitedStringCollectionstatic JCType
classType
The type managed from JCOBridge.-
Fields inherited from class org.mases.jcobridge.netreflection.NetObjectEnumerable
Null
-
-
Constructor Summary
Constructors Constructor Description CommaDelimitedStringCollection()
CommaDelimitedStringCollection(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
AddNewCommaDelimitedStringCollection(java.lang.String value)
void
AddRangeNewCommaDelimitedStringCollection(java.lang.String[] range)
void
AddRangeNewCommaDelimitedStringCollection(JCORefOut dupParam0)
static CommaDelimitedStringCollection
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoCommaDelimitedStringCollection
, a cast assert is made to check if types are compatible.void
ClearNewCommaDelimitedStringCollection()
CommaDelimitedStringCollection
Clone()
boolean
getIsModified()
boolean
getIsReadOnly()
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 Typevoid
InsertNewCommaDelimitedStringCollection(int index, java.lang.String value)
void
RemoveNewCommaDelimitedStringCollection(java.lang.String value)
void
setIsReadOnly(boolean IsReadOnly)
void
setJCOInstance(JCObject instance)
void
SetReadOnly()
-
Methods inherited from class system.collections.specialized.StringCollection
Add, AddRange, AddRange, Clear, Contains, CopyTo, CopyTo, getCount, getIsSynchronized, getSyncRoot, IndexOf, Insert, Remove, RemoveAt
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObjectEnumerable
GetEnumerator, iterator
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Configuration.ConfigurationManager, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Configuration.ConfigurationManager- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Configuration.CommaDelimitedStringCollection- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CommaDelimitedStringCollection
public CommaDelimitedStringCollection(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
CommaDelimitedStringCollection
public CommaDelimitedStringCollection() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-
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 classStringCollection
- 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 classStringCollection
- 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 classStringCollection
- 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 classStringCollection
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classStringCollection
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classStringCollection
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static CommaDelimitedStringCollection cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoCommaDelimitedStringCollection
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
CommaDelimitedStringCollection
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Clone
public CommaDelimitedStringCollection Clone() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, ConfigurationErrorsException, NotSupportedException, InvalidOperationException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
-
AddNewCommaDelimitedStringCollection
public void AddNewCommaDelimitedStringCollection(java.lang.String value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, ConfigurationErrorsException, NotSupportedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
ConfigurationErrorsException
NotSupportedException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
AddRangeNewCommaDelimitedStringCollection
public void AddRangeNewCommaDelimitedStringCollection(java.lang.String[] range) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, ConfigurationErrorsException, NotSupportedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
ConfigurationErrorsException
NotSupportedException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
AddRangeNewCommaDelimitedStringCollection
public void AddRangeNewCommaDelimitedStringCollection(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, ConfigurationErrorsException, NotSupportedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
ConfigurationErrorsException
NotSupportedException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
ClearNewCommaDelimitedStringCollection
public void ClearNewCommaDelimitedStringCollection() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, ConfigurationErrorsException, IndexOutOfRangeException
-
InsertNewCommaDelimitedStringCollection
public void InsertNewCommaDelimitedStringCollection(int index, java.lang.String value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, ConfigurationErrorsException, NotSupportedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
ConfigurationErrorsException
NotSupportedException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
RemoveNewCommaDelimitedStringCollection
public void RemoveNewCommaDelimitedStringCollection(java.lang.String value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, ConfigurationErrorsException, NotSupportedException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
CultureNotFoundException
ObjectDisposedException
ConfigurationErrorsException
NotSupportedException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
-
SetReadOnly
public void SetReadOnly() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsModified
public boolean getIsModified() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
getIsReadOnly
public boolean getIsReadOnly() throws java.lang.Throwable
- Overrides:
getIsReadOnly
in classStringCollection
- Throws:
java.lang.Throwable
-
setIsReadOnly
public void setIsReadOnly(boolean IsReadOnly) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-