public interface Identifiable
Modifier and Type | Method and Description |
---|---|
static java.util.Collection<java.lang.Long> |
collectIds(java.util.Collection<? extends Identifiable> col)
Iterates over a collection of Identifiable and returns a new Set of type Long with the result of getId.
|
static java.util.Collection<java.lang.Long> |
collectIds(java.util.Collection<? extends Identifiable> col,
boolean removeDuplicates)
Iterates over a collection of Identifiable and returns a new collection of type Long with the result of getId.
|
static java.lang.String |
getCommaSeparatedIdList(java.util.Collection col)
Returns a
String containing a comma separated list of the Ids of the passed
Identifiable-objects. |
java.lang.Long |
getId()
Gets the internal Id of this Identifiable.
|
static <I extends Identifiable> |
toMap(java.util.Collection<I> c) |
static <I extends Identifiable> |
toMap(java.util.Collection<I> c,
java.util.Map<java.lang.Long,I> map)
Creates a map from the given Collection of Identifiables with the Id as
key and the Identifiable as value.
|
static java.lang.String getCommaSeparatedIdList(java.util.Collection col)
String
containing a comma separated list of the Ids of the passed
Identifiable-objects. This is especially useful for queries with "in list" statements.
If anything else than an Identifiable is part of the passed collection, then its
String-value is used for the list.
Please prefer "Id in $1" queries and collectIds(java.util.Collection<? extends de.ipcon.schema.Identifiable>)
in the future, because it improves performance for large Id lists.col
- Collection
of objects, which shall be output with their Id if they are
instances of Identifiable or in their String-representation otherwise.String
with the concatenated comma separated Ids or String representations.static <I extends Identifiable> java.util.Map<java.lang.Long,I> toMap(java.util.Collection<I> c)
static java.util.Collection<java.lang.Long> collectIds(java.util.Collection<? extends Identifiable> col)
DescribableI.collectDescribe(col, 'Id')
is the element type of the returned collection.col
- The collection of Identifiable objects to gather Ids from.static java.util.Collection<java.lang.Long> collectIds(java.util.Collection<? extends Identifiable> col, boolean removeDuplicates)
DescribableI.collectDescribe(col, 'Id')
is the element type of the returned collection.col
- The collection of Identifiable objects to gather Ids from.removeDuplicates
- If true, then the result will contain each Id only once.
If false, duplicates are possible.static <I extends Identifiable> java.util.Map<java.lang.Long,I> toMap(java.util.Collection<I> c, java.util.Map<java.lang.Long,I> map)
java.lang.Long getId()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.