|
Extension SDK 10.1.2 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object oracle.ide.util.ModelUtil
Utility methods frequently used by data classes and design-time classes.
Method Summary | |
static boolean |
areBooleansDifferent(java.lang.Boolean b1,
java.lang.Boolean b2)
This is a utility method that compares two Booleans when one or both of the objects might be null The result of
this method is determined as follows:
If b1 and b2 are both TRUE or
neither b1 nor b2 is TRUE,
return false . |
static boolean |
areBooleansEqual(java.lang.Boolean b1,
java.lang.Boolean b2)
This is a utility method that compares two Booleans when one or both of the objects might be null The result of
this method is determined as follows:
If b1 and b2 are both TRUE or
neither b1 nor b2 is TRUE,
return true . |
static boolean |
areDifferent(java.lang.Object o1,
java.lang.Object o2)
This is a utility method that compares two objects when one or both of the objects might be null . |
static boolean |
areEqual(java.lang.Object o1,
java.lang.Object o2)
This is a utility method that compares two objects when one or both of the objects might be null The result of
this method is determined as follows:
If o1 and o2 are the same object
according to the == operator, return
true . |
static java.lang.String |
concat(java.lang.String[] strs)
Returns a single string that is the concatenation of all the strings in the specified string array. |
static java.lang.String |
concat(java.lang.String[] strs,
java.lang.String delim)
Returns a single string that is the concatenation of all the strings in the specified string array. |
static void |
deepCopy(java.util.Collection src,
java.util.Collection dst)
Copies collection contents from src to dst . |
static void |
deepCopy(java.util.List src,
java.util.List dst)
Copies list contents from src to dst . |
static void |
deepCopy(java.util.Map src,
java.util.Map dst)
Copies key-value mappings from src to
dst . |
static boolean |
hasLength(java.lang.String s)
Returns true if the specified String is not
null and has a length greater than zero. |
static boolean |
hasNonNullElement(java.lang.Object[] array)
Returns true if the specified array is not null
and contains a non-null element. |
static boolean |
hasStringChanged(java.lang.String oldString,
java.lang.String newString)
Determines if a string has been changed. |
static java.util.List |
iteratorAsList(java.util.Iterator i)
Build a List of all elements in an Iterator. |
static java.lang.String |
nullifyIfEmpty(java.lang.String s)
Returns null if the specified string is empty or
null . |
static java.lang.String |
nullifyingToString(java.lang.Object o)
Returns null if the specified object is null
or if its toString() representation is empty. |
static java.util.Iterator |
reverseListIterator(java.util.ListIterator i)
Creates an Iterator that is the reverse of a ListIterator. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static final boolean areEqual(java.lang.Object o1, java.lang.Object o2)
null
The result of
this method is determined as follows:
o1
and o2
are the same object
according to the ==
operator, return
true
.
o1
or o2
is
null
, return false
.
o1.equals(o2)
.
areDifferent(Object, Object)
method.
For array types, one of the equals
methods in
Arrays
should be used instead of this method.
Note that arrays with more than one dimension will require some
custom code in order to implement equals
properly.
public static final boolean areBooleansEqual(java.lang.Boolean b1, java.lang.Boolean b2)
null
The result of
this method is determined as follows:
b1
and b2
are both TRUE or
neither b1
nor b2
is TRUE,
return true
.
false
.
#areDifferent(Boolean, Boolean)
method.
public static final boolean areDifferent(java.lang.Object o1, java.lang.Object o2)
null
. The result
returned by this method is determined as follows:
o1
and o2
are the same object
according to the ==
operator, return
false
.
o1
or o2
is
null
, return true
.
!o1.equals(o2)
.
areEqual(Object, Object)
method.
For array types, one of the equals
methods in
Arrays
should be used instead of this method.
Note that arrays with more than one dimension will require some
custom code in order to implement equals
properly.
public static final boolean areBooleansDifferent(java.lang.Boolean b1, java.lang.Boolean b2)
null
The result of
this method is determined as follows:
b1
and b2
are both TRUE or
neither b1
nor b2
is TRUE,
return false
.
true
.
areBooleansEqual(Boolean, Boolean)
method.
public static final boolean hasNonNullElement(java.lang.Object[] array)
true
if the specified array is not null
and contains a non-null element. Returns false
if the array is null or if all the array elements are null.
public static final java.lang.String concat(java.lang.String[] strs)
public static final java.lang.String concat(java.lang.String[] strs, java.lang.String delim)
public static final boolean hasLength(java.lang.String s)
true
if the specified String
is not
null
and has a length greater than zero. This is
a very frequently occurring check.
public static final java.lang.String nullifyIfEmpty(java.lang.String s)
null
if the specified string is empty or
null
. Otherwise the string itself is returned.
public static final java.lang.String nullifyingToString(java.lang.Object o)
null
if the specified object is null
or if its toString()
representation is empty.
Otherwise, the toString()
representation of the
object itself is returned.
public static boolean hasStringChanged(java.lang.String oldString, java.lang.String newString)
oldString
- is the initial value of the StringnewString
- is the new value of the String
public static final void deepCopy(java.util.Map src, java.util.Map dst)
src
to
dst
. Any pre-existing mappings in dst
are not deleted. However, any mappings in
src
that also exist in dst
will result
in the dst
mappings being overwritten, if and only
if the value objects have exactly the same type; otherwise, a
new value object is created and the old value object is discarded.
The key objects are not copied, so the keys that end up in
dst
will be references to the exact same objects
as the keys in src
. Values, however, are copied
if the value objects implement Copyable
. Value objects
that do not implement Copyable
are put directly into the
dst
Map
.
public static final void deepCopy(java.util.List src, java.util.List dst)
src
to dst
.
If the dst
list is not empty it will add the
elements from src
. The method does not check for
duplicate elements.
public static final void deepCopy(java.util.Collection src, java.util.Collection dst)
src
to dst
.
If the dst
collection is not empty it will add the
elements from src
. The method does not check for
duplicate elements.
public static java.util.List iteratorAsList(java.util.Iterator i)
public static java.util.Iterator reverseListIterator(java.util.ListIterator i)
|
Extension SDK | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1997, 2004, Oracle. All rights reserved.