Beispiel #1
0
 def _convert_to_j(self, annotation):
     if annotation is not None:
         return jset(
             [self.element_type._convert_to_j(elt) for elt in annotation]
         )
     else:
         return annotation
Beispiel #2
0
 def _convert_to_j(self, annotation):
     if annotation is not None:
         return jset(
             [self.element_type._convert_to_j(elt) for elt in annotation]
         )
     else:
         return annotation
Beispiel #3
0
 def _select(self, *identifiers):
     return TStruct._from_java(self._jtype.filter(jset(list(identifiers)), True)._1())
Beispiel #4
0
 def _drop(self, *identifiers):
     return TStruct._from_java(self._jtype.filter(jset(list(identifiers)), False)._1())