AI-generated Key Takeaways
- 
          RewriterOptions.Language is an annotation that defines supported languages. 
- 
          Supported languages include English, French, German, Italian, Japanese, Korean, and Spanish, each represented by an integer constant. 
    public static abstract @interface RewriterOptions.Language implements Annotation
  
  
  Languages supported.
Constant Summary
| int | ENGLISH | |
| int | FRENCH | |
| int | GERMAN | |
| int | ITALIAN | |
| int | JAPANESE | |
| int | KOREAN | |
| int | SPANISH | 
Inherited Method Summary
Constants
public static final int ENGLISH
            Constant Value: 0
          
        public static final int FRENCH
            Constant Value: 4
          
        public static final int GERMAN
            Constant Value: 3
          
        public static final int ITALIAN
            Constant Value: 5
          
        public static final int JAPANESE
            Constant Value: 1
          
        public static final int KOREAN
            Constant Value: 2
          
        public static final int SPANISH
            Constant Value: 6
          
        