All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.newrelic.weave.violation.ENUM_NEW_FIELD.md Maven / Gradle / Ivy

There is a newer version: 8.17.0
Show newest version
## ENUM_NEW_FIELD ##

###Description###

This violation was raised because the @Weave enum cannot have new fields.

###Example###

####Original Class####
```
public enum Example {
  FOO, BAR

}
```


####Bad####
```
@Weave
public enum Example {
    FOO, BAR;

    @NewField
    int bad;

}
```

----------

####Good####
```
@Weave
public enum Example {
    FOO, BAR

}
```




© 2015 - 2024 Weber Informatics LLC | Privacy Policy