Class ErrorList

All Implemented Interfaces:
ICommonsCollection<IError>, ICommonsIterable<IError>, ICommonsList<IError>, IHasErrorLevels<IError>, IErrorList, ICloneable<ICommonsList<IError>>, IHasSize, Serializable, Cloneable, Iterable<IError>, Collection<IError>, List<IError>, RandomAccess, SequencedCollection<IError>

@NotThreadSafe public class ErrorList extends CommonsArrayList<IError> implements IErrorList
Default implementation of IErrorList.
Since:
8.5.0
Author:
Philip Helger
See Also:
  • Constructor Details

    • ErrorList

      public ErrorList()
      Default constructor.
    • ErrorList

      public ErrorList(@Nullable Iterable<? extends IError> aList)
      Constructor taking a list of iterable objects.
      Parameters:
      aList - The list to be added. May be null.
    • ErrorList

      public ErrorList(@Nullable IError... aList)
      Constructor taking a list of iterable objects.
      Parameters:
      aList - The array to be added. May be null.
    • ErrorList

      public ErrorList(@Nonnull ErrorList aErrorList)
      Copy constructor.
      Parameters:
      aErrorList - The error list to copy from. May be null.
  • Method Details