public abstract class ListBaseException extends BaseException implements List
code, formatString, messageKey| Constructor and Description |
|---|
ListBaseException(String message,
String key,
long code) |
ListBaseException(String message,
Throwable cause,
String key,
long code) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int arg0,
Object arg1) |
boolean |
add(Object arg0) |
boolean |
addAll(Collection arg0) |
boolean |
addAll(int arg0,
Collection arg1) |
void |
clear() |
boolean |
contains(Object arg0) |
boolean |
containsAll(Collection arg0) |
Object |
get(int arg0) |
String |
getLocalizedMessage(ExceptionTranslator exceptionTranslator,
int indent)
Returns the translated message that
describes the exception with indentation.
|
String |
getMessage()
Returns the message that describes the exception.
|
String |
getMessage(int indent)
Returns the message that describes the exception, with indentation.
|
int |
indexOf(Object arg0) |
boolean |
isEmpty() |
int |
lastIndexOf(Object arg0) |
ListIterator |
listIterator() |
ListIterator |
listIterator(int arg0) |
void |
printStackTrace() |
void |
printStackTrace(PrintStream s) |
void |
printStackTrace(PrintWriter s) |
Object |
remove(int arg0) |
boolean |
remove(Object arg0) |
boolean |
removeAll(Collection arg0) |
boolean |
retainAll(Collection arg0) |
Object |
set(int arg0,
Object arg1) |
int |
size() |
List |
subList(int arg0,
int arg1) |
Object[] |
toArray() |
Object[] |
toArray(Object[] arg0) |
getCode, getFormatString, getLocalizedMessage, getLocalizedMessageStack, getLocalizedMessageStack, getMessageKey, getMessageStack, getMessageStack, getValue, iterator, setCode, setFormatString, setMessageKey, setTranslator, setTranslator, setValue, valuesaddSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, setStackTrace, toStringpublic int size()
size in interface Collectionsize in interface Listpublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in interface Listpublic boolean contains(Object arg0)
contains in interface Collectioncontains in interface Listpublic Object[] toArray()
toArray in interface CollectiontoArray in interface Listpublic Object[] toArray(Object[] arg0)
toArray in interface CollectiontoArray in interface Listarg0 - public boolean add(Object arg0)
add in interface Collectionadd in interface Listarg0 - public boolean remove(Object arg0)
remove in interface Collectionremove in interface Listpublic boolean containsAll(Collection arg0)
containsAll in interface CollectioncontainsAll in interface Listarg0 - public boolean addAll(Collection arg0)
addAll in interface CollectionaddAll in interface Listarg0 - public boolean addAll(int arg0,
Collection arg1)
public boolean removeAll(Collection arg0)
removeAll in interface CollectionremoveAll in interface Listarg0 - public boolean retainAll(Collection arg0)
retainAll in interface CollectionretainAll in interface Listarg0 - public void clear()
clear in interface Collectionclear in interface Listpublic void add(int arg0,
Object arg1)
public int lastIndexOf(Object arg0)
lastIndexOf in interface Listpublic ListIterator listIterator()
listIterator in interface Listpublic ListIterator listIterator(int arg0)
listIterator in interface Listpublic String getMessage()
IBaseExceptiongetMessage in interface IBaseExceptiongetMessage in class BaseExceptionpublic String getMessage(int indent)
IBaseExceptiongetMessage in interface IBaseExceptiongetMessage in class BaseExceptionindent - Quantity of blanks to insert
at the start of the message.public String getLocalizedMessage(ExceptionTranslator exceptionTranslator, int indent)
IBaseExceptiongetLocalizedMessage in interface IBaseExceptiongetLocalizedMessage in class BaseExceptionexceptionTranslator - Instance of a class that fulfills
the IExceptionTranslator interface.
His method "getText" takes charge returning
the expression, correspondent to the key that
delivers him, translated into the configured language.indent - Quantity of blanks to insert
at the start of the message.public void printStackTrace(PrintStream s)
printStackTrace in class Throwablepublic void printStackTrace()
printStackTrace in class Throwablepublic void printStackTrace(PrintWriter s)
printStackTrace in class Throwable