public boolean getEnsureResultMappingValue() { Boolean value = AnnotationValueUtil.toBoolean(ensureResultMapping); if (value == null) { throw new AptIllegalStateException("ensureResultMapping"); } return value.booleanValue(); }
public boolean getImmutableValue() { Boolean result = AnnotationValueUtil.toBoolean(immutable); if (result == null) { throw new AptIllegalStateException("immutable"); } return result.booleanValue(); }