Class JsonSchemaArray
java.lang.Object
- All Implemented Interfaces:
- Serializable,- Cloneable,- Iterable<JsonSchema>,- Collection<JsonSchema>,- Deque<JsonSchema>,- List<JsonSchema>,- Queue<JsonSchema>
Represents a list of 
JsonSchema objects.- 
Field SummaryFields inherited from class java.util.AbstractListmodCount
- 
Constructor SummaryConstructorsConstructorDescriptionDefault constructor.JsonSchemaArray(JsonSchema... schemas) Constructor with predefined types to add to this list.
- 
Method SummaryModifier and TypeMethodDescriptionaddAll(JsonSchema... schemas) Convenience method for adding one or moreJsonSchemaobjects to this array.Methods inherited from class java.util.LinkedListadd, 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, toArrayMethods inherited from class java.util.AbstractSequentialListiteratorMethods inherited from class java.util.AbstractListequals, hashCode, listIterator, removeRange, subListMethods inherited from class java.util.AbstractCollectioncontainsAll, isEmpty, removeAll, retainAll, toStringMethods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.CollectionparallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.ListcontainsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, replaceAll, retainAll, sort, subList
- 
Constructor Details- 
JsonSchemaArraypublic JsonSchemaArray()Default constructor.
- 
JsonSchemaArrayConstructor with predefined types to add to this list.- Parameters:
- schemas- The list of schemas in this array.
 
 
- 
- 
Method Details- 
addAllConvenience method for adding one or moreJsonSchemaobjects to this array.- Parameters:
- schemas- The- JsonSchemaobjects to add to this array.
- Returns:
- This object.
 
 
-