public interface BusinessObject
BusinessObject
interface (and
preferably nothing else). Don't build hierarchies among the business object interfaces. If some interfaces
have common properties they can/should extend some common package-private (not public) interface that does
not exted BusinessObject.Modifier and Type | Method and Description |
---|---|
static <E> List<E> |
getEmptyList() |
static <K,V> Map<K,V> |
getEmptyMap() |
static <E> Set<E> |
getEmptySet() |
static <E> List<E> |
makeSingleEntryList(E listEntry) |
static <K,V> Map<K,V> |
makeSingleEntryMap(K mpEntryKey,
V mapEntryValue) |
static <E> Set<E> |
makeSingleEntrySet(E setEntry) |
String |
toDisplayString() |
static <E> List<E> getEmptyList()
static <K,V> Map<K,V> getEmptyMap()
static <E> Set<E> getEmptySet()
static <E> List<E> makeSingleEntryList(E listEntry)
static <K,V> Map<K,V> makeSingleEntryMap(K mpEntryKey, V mapEntryValue)
static <E> Set<E> makeSingleEntrySet(E setEntry)
String toDisplayString()
Copyright © 2019 Optimatika. All rights reserved.