コード例 #1
0
 @Override
 public Integer findPropertyIndex(Annotated ann) {
   JsonProperty prop = _findAnnotation(ann, JsonProperty.class);
   if (prop != null) {
     int ix = prop.index();
     if (ix != JsonProperty.INDEX_UNKNOWN) {
       return Integer.valueOf(ix);
     }
   }
   return null;
 }