{
/* As part of [JACKSON-52] we'll use baseline settings for
* auto-detection, but also see if the class might override
* that setting.
*/
JsonAutoDetect cann = _classInfo.getAnnotation(JsonAutoDetect.class);
if (cann != null) {
JsonMethod[] methods = cann.value();
if (methods != null) {
autodetect = false;
for (JsonMethod jm : methods) {
if (jm.getterEnabled()) {
autodetect = true;