J'ai deux listes d'objets. List<X>
et List<Y>
. X
et Y
sont des objets qui ressemblent à:
public class X {
String a;
String b;
String v;
String w;
String m;
String n;
}
public class Y {
String a;
String b;
List<A> aList;
}
public class A {
String v;
String w;
List<B> bList;
}
public class B {
String m;
String n;
}
Comment transformer List<X>
en List<Y>
en fonction d'une règle:
Les valeurs de certains champs doivent être égales.
Par exemple:
Dans List<Y>
, pour un objet Y, la valeur du champ a doit être égale.
Dans la zone List<A>
de Y, pour un objet A, la valeur de la zone w doit être égale.
Dans le champ List<B>
de A, pour un objet B, la valeur du champ m doit être égale, etc.
Guava utilise cette méthode, Listes # transform , mais je ne sais pas comment transformer.
Ou d'une autre manière?
public static <F,T> List<T> transform(List<F> fromList,
Function<? super F,? extends T> function
Vous voudrez peut-être lire les documents de l'API pour Lists.transform () et Function , mais l'appelant de la transformation fournit un objet Function
qui convertit une F
en une T
.
Par exemple, si vous avez un List<Integer> intList
et que vous voulez créer un List<String>
tel que chaque élément de ce dernier contienne la représentation anglaise de ce nombre (1 devient "un" etc.) et que vous ayez accès à une classe telle que IntToEnglish puis
Function<Integer, String> intToEnglish =
new Function<Integer,String>() {
public String apply(Integer i) { return new IntToEnglish().english_number(i); }
};
List<String> wordsList = Lists.transform(intList, intToEnglish);
Est-ce que cette conversion.
Vous pouvez appliquer le même modèle pour transformer votre List<X>
en List<Y>
Avec Java lambda:
public static <K,V,Q extends K> List<V> transform( final List<Q> input, final Java.util.function.Function<K,V> tfunc ) {
if( null == input ) {
return null;
}
return input.stream().map(tfunc).collect( Collectors.toList() );
}
Vous devez juste implémenter: Java.util.function.Function
Que dis-tu de ça?
import Java.util.ArrayList;
import Java.util.List;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
public class GuavaTransform {
public static void main(String[] args) {
List<X> xList = new ArrayList<X>();
xList.add(new X("a", "b", "v", "w", "m", "n"));
xList.add(new X("a1", "b1", "v1", "w1", "m1", "n1"));
for(X elem: xList) {
System.out.println("An instance of X:"+ elem);
}
System.out.println();
List<Y> yList = Lists.transform(xList, new TransformXY());
for(Y elem: yList) {
System.out.println("The corresponding instance of Y: \n"+elem);
}
}
}
class TransformXY implements Function<X, Y> {
@Override
public Y apply(X x) {
List<B> bList = new ArrayList<B>();
bList.add(new B(x.m, x.n));
List<A> aList = new ArrayList<A>();
aList.add(new A(x.v, x.w, bList));
return new Y(x.a, x.b, aList);
}
}
class X {
String a;
String b;
String v;
String w;
String m;
String n;
X(String a, String b, String v, String w, String m, String n) {
super();
this.a = a;
this.b = b;
this.v = v;
this.w = w;
this.m = m;
this.n = n;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("(");
sb.append(a+",");
sb.append(b+",");
sb.append(v+",");
sb.append(w+",");
sb.append(m+",");
sb.append(n);
sb.append(")");
return sb.toString();
}
}
class Y {
String a;
String b;
List<A> aList;
Y(String a, String b, List<A> aList) {
super();
this.a = a;
this.b = b;
this.aList = aList;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(a+"\n");
sb.append(b+"\n");
for(A elem: aList) {
sb.append(elem+"\n");
}
return sb.toString();
}
}
class A {
String v;
String w;
List<B> bList;
A(String v, String w, List<B> bList) {
super();
this.v = v;
this.w = w;
this.bList = bList;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("--------"+v+"\n");
sb.append("--------"+w+"\n");
for(B elem: bList) {
sb.append(elem+"\n");
}
return sb.toString();
}
}
class B {
String m;
String n;
B(String m, String n) {
super();
this.m = m;
this.n = n;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("----------------"+m+"\n");
sb.append("----------------"+n+"\n");
return sb.toString();
}
}
Sortie de la console:
An instance of X:(a,b,v,w,m,n)
An instance of X:(a1,b1,v1,w1,m1,n1)
The corresponding instance of Y:
a
b
--------v
--------w
----------------m
----------------n
The corresponding instance of Y:
a1
b1
--------v1
--------w1
----------------m1
----------------n1
À la manière de Java 8, IntelliJ IDEA m'a aidé à:
List<X> xList = new ArrayList<>();
List<Y> yList = xList
.stream()
.map(X::getY)
.collect(Collectors.toList());
Identique à @Isaace mais avec la syntaxe lambda (tirée de cet exemple ):
List<X> xList = new ArrayList<>();
List<Y> yList = xList
.stream()
.map(n -> someTransformFunc(n))
.collect(Collectors.toList());
suppose que deux objets peuvent interconversion, Coach et EntityBase
Méthode générique 1.declare
public static <TSourse, TResult> void ToList(List<TSourse> list, List<TResult> results) {
if (list.size() > 0) {
for (TSourse obj : list) {
TResult tResult = (TResult) obj;
if (tResult == null) {
throw new AppException("error....");
}
results.add(tResult);
}
}
}
2.call cette méthode
List<EntityBase> entityBaseList = new ArrayList<>();
Coach coach = new Coach();
coach.setId("123");
entityBaseList.add(coach);
List<Coach> coachList = new ArrayList<>();
ToList(entityBaseList, coachList);
//will complete List<AObj> to another List<BObj>