Extract Jackson annotation at runtime

Extracting Jackson annotation

public static void main(String[] args) throws Exception {    
    enum Items {  
        @JsonProperty("home.kitchen.bread")  
        BREAD,  
        @JsonProperty("home.kitchen.milk")  
        MILK,  
        @JsonProperty("home.bedroom.pillow")  
        PILLOW,  
        @JsonProperty("home.bedroom.sheets")  
        SHEETS,  
        @JsonProperty("home.livingroom.couch")  
        COUCH,  
        @JsonProperty("home.livingroom.tv")  
        TV  
    }  

	// Extract annotation 
    Field field = Items.class.getField(Items.MILK.name());  
    JsonProperty annotation = field.getAnnotation(JsonProperty.class);  
	System.out.println(annotation.value());  
  }
Output
home.kitchen.milk