1 16 package org.springframework.binding.format; 17 18 import org.springframework.core.enums.StaticLabeledEnum; 19 20 24 public class Style extends StaticLabeledEnum { 25 26 public static final Style FULL = new Style(0, "Full"); 27 28 public static final Style LONG = new Style(1, "Long"); 29 30 public static final Style MEDIUM = new Style(2, "Medium"); 31 32 public static final Style SHORT = new Style(3, "Short"); 33 34 private Style(int code, String label) { 35 super(code, label); 36 } 37 } | Popular Tags |