* getTypeB<p>
* <p>
* @return TypeB
*/
public TypeB getTypeB() {
TypeB tb = new TypeB();
tb.setB1(this.getTypeA());
tb.setB2(this.randomAsText().concat("B2").getValue());
tb.setB3(this.value.nextInt(65536));
tb.setB4(this.randomAsText().concat("B4").getValue());
return tb;
}