Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
OdStringArray.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace Teigha.Core {
12
13using System;
14using System.Runtime.InteropServices;
15
16public class OdStringArray : IDisposable, System.Collections.IEnumerable
17, System.Collections.Generic.IList<String>
18 {
19 private Object locker = new Object();
20 private HandleRef swigCPtr;
21 protected bool swigCMemOwn;
22 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
23 public OdStringArray(IntPtr cPtr, bool cMemoryOwn) {
24 swigCMemOwn = cMemoryOwn;
25 swigCPtr = new HandleRef(this, cPtr);
26 }
27 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
28 public static HandleRef getCPtr(OdStringArray obj) {
29 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
30 }
31
33 Dispose(false);
34 }
35
36 public void Dispose() {
37 Dispose(true);
38 global::System.GC.SuppressFinalize(this);
39 }
40
41 protected virtual void Dispose(bool disposing) {
42 lock(this) {
43 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
44 if (swigCMemOwn) {
45 swigCMemOwn = false;
47 }
48 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
49 }
50 }
51 }
52
53 public OdStringArray(System.Collections.ICollection c) : this() {
54 if (c == null)
55 throw new ArgumentNullException("c");
56 foreach (String element in c) {
57 this.Add(element);
58 }
59 }
60
62 : this(GlobalsPINVOKE.new_OdStringArray__SWIG_0(), MemoryManager.GetMemoryManager().GetCurrentTransaction() == null)
63 {
64 MemoryTransaction mTr = MemoryManager.GetMemoryManager().GetCurrentTransaction(); // MemoryTransaction #9
65 if (null != mTr)
66 {
67 mTr.AddObject(new OdStringArray(swigCPtr.Handle, true));
68 }
70 }
71
72 public OdStringArray(OdStringArray other) : this(GlobalsPINVOKE.new_OdStringArray__SWIG_1(OdStringArray.getCPtr(other)), MemoryManager.GetMemoryManager().GetCurrentTransaction() == null) {
73 MemoryTransaction mTr = MemoryManager.GetMemoryManager().GetCurrentTransaction(); // MemoryTransaction #10
74 if (null != mTr)
75 {
76 mTr.AddObject(new OdStringArray(swigCPtr.Handle, true));
77 }
79 }
80
81 public OdStringArray(int capacity) : this(GlobalsPINVOKE.new_OdStringArray__SWIG_2(capacity), MemoryManager.GetMemoryManager().GetCurrentTransaction() == null) {
82 MemoryTransaction mTr = MemoryManager.GetMemoryManager().GetCurrentTransaction(); // MemoryTransaction #11
83 if (null != mTr)
84 {
85 mTr.AddObject(new OdStringArray(swigCPtr.Handle, true));
86 }
88 }
89
90 public bool IsFixedSize {
91 get {
92 return false;
93 }
94 }
95
96 public bool IsReadOnly {
97 get {
98 return false;
99 }
100 }
101
102 public String this[int index] {
103 get {
104 return getitem(index);
105 }
106 set {
107 setitem(index, value);
108 }
109 }
110
111 public int Capacity {
112 get {
113 return (int)capacity();
114 }
115 set {
116 if (value < size())
117 throw new ArgumentOutOfRangeException("Capacity");
118 reserve((uint)value);
119 }
120 }
121
122 public int Count {
123 get {
124 return (int)size();
125 }
126 }
127
128 public bool IsSynchronized {
129 get {
130 return false;
131 }
132 }
133
134 public void CopyTo(String[] array)
135 {
136 CopyTo(0, array, 0, this.Count);
137 }
138
139 public void CopyTo(String[] array, int arrayIndex)
140 {
141 CopyTo(0, array, arrayIndex, this.Count);
142 }
143
144 public void CopyTo(int index, String[] array, int arrayIndex, int count)
145 {
146 if (array == null)
147 throw new ArgumentNullException("array");
148 if (index < 0)
149 throw new ArgumentOutOfRangeException("index", "Value is less than zero");
150 if (arrayIndex < 0)
151 throw new ArgumentOutOfRangeException("arrayIndex", "Value is less than zero");
152 if (count < 0)
153 throw new ArgumentOutOfRangeException("count", "Value is less than zero");
154 if (array.Rank > 1)
155 throw new ArgumentException("Multi dimensional array.", "array");
156 if (index+count > this.Count || arrayIndex+count > array.Length)
157 throw new ArgumentException("Number of elements to copy is too large.");
158 for (int i=0; i<count; i++)
159 array.SetValue(getitemcopy(index+i), arrayIndex+i);
160 }
161
162 System.Collections.Generic.IEnumerator<String> System.Collections.Generic.IEnumerable<String>.GetEnumerator() {
163 return new OdStringArrayEnumerator(this);
164 }
165
166 System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
167 return new OdStringArrayEnumerator(this);
168 }
169
171 return new OdStringArrayEnumerator(this);
172 }
173
174 // Type-safe enumerator
179 public class OdStringArrayEnumerator : System.Collections.IEnumerator
180 , System.Collections.Generic.IEnumerator<String>
181 {
182 private OdStringArray collectionRef;
183 private int currentIndex;
184 private object currentObject;
185 private int currentSize;
186
188 collectionRef = collection;
189 currentIndex = -1;
190 currentObject = null;
191 currentSize = collectionRef.Count;
192 }
193
194 // Type-safe iterator Current
196 get {
197 if (currentIndex == -1)
198 throw new InvalidOperationException("Enumeration not started.");
199 if (currentIndex > currentSize - 1)
200 throw new InvalidOperationException("Enumeration finished.");
201 if (currentObject == null)
202 throw new InvalidOperationException("Collection modified.");
203 return (String)currentObject;
204 }
205 }
206
207 // Type-unsafe IEnumerator.Current
208 object System.Collections.IEnumerator.Current {
209 get {
210 return Current;
211 }
212 }
213
214 public bool MoveNext() {
215 int size = collectionRef.Count;
216 bool moveOkay = (currentIndex+1 < size) && (size == currentSize);
217 if (moveOkay) {
218 currentIndex++;
219 currentObject = collectionRef[currentIndex];
220 } else {
221 currentObject = null;
222 }
223 return moveOkay;
224 }
225
226 public void Reset() {
227 currentIndex = -1;
228 currentObject = null;
229 if (collectionRef.Count != currentSize) {
230 throw new InvalidOperationException("Collection modified.");
231 }
232 }
233
234 public void Dispose() {
235 currentIndex = -1;
236 currentObject = null;
237 }
238 }
239
240 public void Clear() {
243 }
244
245 public void Add(String x) {
248 }
249
250 private uint size() {
251 uint ret = GlobalsPINVOKE.OdStringArray_size(swigCPtr);
253 return ret;
254 }
255
256 private uint capacity() {
257 uint ret = GlobalsPINVOKE.OdStringArray_capacity(swigCPtr);
258 if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
259 return ret;
260 }
261
262 private void reserve(uint n) {
263 GlobalsPINVOKE.OdStringArray_reserve(swigCPtr, n);
264 if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
265 }
266
267 public void resize(uint logicalLength) {
268 GlobalsPINVOKE.OdStringArray_resize(swigCPtr, logicalLength);
270 }
271
272 private String getitemcopy(int index) {
273 string ret = GlobalsPINVOKE.OdStringArray_getitemcopy(swigCPtr, index);
275 return ret;
276}
277
278 private String getitem(int index) {
279 string ret = GlobalsPINVOKE.OdStringArray_getitem(swigCPtr, index);
280 if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
281 return ret;
282}
283
284 private void setitem(int index, String val) {
285 GlobalsPINVOKE.OdStringArray_setitem(swigCPtr, index, val);
286 if (GlobalsPINVOKE.SWIGPendingException.Pending) throw GlobalsPINVOKE.SWIGPendingException.Retrieve();
287 }
288
289 public void AddRange(OdStringArray values) {
292 }
293
294 public OdStringArray GetRange(int index, int count) {
295 global::System.IntPtr cPtr = GlobalsPINVOKE.OdStringArray_GetRange(swigCPtr, index, count);
296 OdStringArray ret = (cPtr == global::System.IntPtr.Zero) ? null : new OdStringArray(cPtr, false);
298 return ret;
299 }
300
301 public void Insert(int index, String x) {
302 GlobalsPINVOKE.OdStringArray_Insert(swigCPtr, index, x);
304 }
305
306 public void InsertRange(int index, OdStringArray values) {
309 }
310
311 public void RemoveAt(int index) {
312 GlobalsPINVOKE.OdStringArray_RemoveAt(swigCPtr, index);
314 }
315
316 public void RemoveRange(int index, int count) {
317 GlobalsPINVOKE.OdStringArray_RemoveRange(swigCPtr, index, count);
319 }
320
321 public static OdStringArray Repeat(String value, int count) {
322 global::System.IntPtr cPtr = GlobalsPINVOKE.OdStringArray_Repeat(value, count);
323 OdStringArray ret = (cPtr == global::System.IntPtr.Zero) ? null : new OdStringArray(cPtr, true);
325 return ret;
326 }
327
328 public void Reverse() {
331 }
332
333 public void Reverse(int index, int count) {
334 GlobalsPINVOKE.OdStringArray_Reverse__SWIG_1(swigCPtr, index, count);
336 }
337
338 public void SetRange(int index, OdStringArray values) {
341 }
342
343 public bool Contains(String value) {
344 bool ret = GlobalsPINVOKE.OdStringArray_Contains(swigCPtr, value);
346 return ret;
347 }
348
349 public int IndexOf(String value) {
350 int ret = GlobalsPINVOKE.OdStringArray_IndexOf(swigCPtr, value);
352 return ret;
353 }
354
358 return ret;
359 }
360
361 public bool Remove(String value) {
362 bool ret = GlobalsPINVOKE.OdStringArray_Remove(swigCPtr, value);
364 return ret;
365 }
366
367}
368
369}
static global::System.Exception Retrieve()
static void OdStringArray_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdStringArray_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)
static int OdStringArray_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void delete_OdStringArray(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OdStringArray_Clear(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OdStringArray_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static void OdStringArray_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static int OdStringArray_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static bool OdStringArray_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static global::System.IntPtr OdStringArray_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)
static uint OdStringArray_size(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OdStringArray_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)
static void OdStringArray_resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)
static void OdStringArray_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)
static void OdStringArray_Add(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void OdStringArray_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, [MarshalAs(UnmanagedType.LPWStr)]String jarg3)
static global::System.IntPtr OdStringArray_Repeat([MarshalAs(UnmanagedType.LPWStr)]String jarg1, int jarg2)
static String OdStringArray_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
static bool OdStringArray_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, [MarshalAs(UnmanagedType.LPWStr)]String jarg2)
static void OdStringArray_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)
virtual void Dispose(bool disposing)
static OdStringArray Repeat(String value, int count)
OdStringArray(System.Collections.ICollection c)
OdStringArray(OdStringArray other)
void resize(uint logicalLength)
OdStringArray(int capacity)
void Insert(int index, String x)
int LastIndexOf(String value)
void AddRange(OdStringArray values)
void RemoveAt(int index)
void InsertRange(int index, OdStringArray values)
void SetRange(int index, OdStringArray values)
OdStringArray(IntPtr cPtr, bool cMemoryOwn)
bool Remove(String value)
static HandleRef getCPtr(OdStringArray obj)
int IndexOf(String value)
void CopyTo(String[] array)
OdStringArray GetRange(int index, int count)
void RemoveRange(int index, int count)
void CopyTo(String[] array, int arrayIndex)
bool Contains(String value)
OdStringArrayEnumerator GetEnumerator()
void CopyTo(int index, String[] array, int arrayIndex, int count)
void Reverse(int index, int count)