1 26 27 package it.stefanochizzolini.clown.documents.contents; 28 29 32 public enum TextRenderingModeEnum 33 { 34 40 Fill(0), 41 44 Stroke(1), 45 48 FillStroke(2), 49 52 Invisible(3), 53 56 FillClip(4), 57 60 StrokeClip(5), 61 64 FillStrokeClip(6), 65 68 Clip(7); 69 72 79 private int code; 80 82 private TextRenderingModeEnum( 84 int code 85 ) 86 {this.code = code;} 87 89 public int getCode( 92 ) 93 {return code;} 94 } | Popular Tags |