LoopTranslation

public abstract @interface LoopTranslation implements Annotation

Annotation that specifies how an enhanced for loop should be translated by the J2ObjC translator.

Example usage:

 for (@LoopTranslation(LoopStyle.JAVA_ITERATOR) Runnable r : tasks) {
   r.run();
 }

Nested Class Summary

enum LoopTranslation.LoopStyle Enumerates the available translation options for enhanced for loops. 

Public Method Summary

LoopTranslation.LoopStyle
value()

Inherited Method Summary

Public Methods

public LoopTranslation.LoopStyle value ()