Package xal.smf.scada
Class ScadaFieldList
java.lang.Object
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<ScadaFieldDescriptor>
,Collection<ScadaFieldDescriptor>
,Deque<ScadaFieldDescriptor>
,List<ScadaFieldDescriptor>
,Queue<ScadaFieldDescriptor>
public class ScadaFieldList
extends LinkedList<ScadaFieldDescriptor>
implements List<ScadaFieldDescriptor>
This is a list of all
ScadaFieldDescriptor
objects
parsed from a SCADA data structure. The field descriptors are sorted by the
ordering encountered in the declaration of fields in the SCADA data
structure.
Ported from XAL on Jul 15, 2014.
· Jonathan M. Freed
- Since:
- Mar 9, 2011
- Author:
- Christopher K. Allen
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorsConstructorDescriptionScadaFieldList
(Class<?> clsScada) Create a new list containing the field descriptors parsed from the given SCADA class. -
Method Summary
Methods inherited from class java.util.LinkedList
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, descendingIterator, element, get, getFirst, getLast, indexOf, lastIndexOf, listIterator, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, remove, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, set, size, spliterator, toArray, toArray
Methods inherited from class java.util.AbstractSequentialList
iterator
Methods inherited from class java.util.AbstractList
equals, hashCode, listIterator, removeRange, subList
Methods inherited from class java.util.AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
Constructor Details
-
ScadaFieldList
Create a new list containing the field descriptors parsed from the given SCADA class.- Parameters:
clsScada
- class annotated with
informationAScada.Field
- Since:
- Mar 9, 2011
-