|
@@ -8,7 +8,7 @@ import java.lang.annotation.Target;
|
|
|
/**
|
|
|
* Applied to declare that every field of a class should be resolved as config entry.
|
|
|
*
|
|
|
- * <p>Use {@link ConfigContainer.Ignore} to exclude a field.
|
|
|
+ * <p>Use {@link Exclude} to exclude a field.
|
|
|
*
|
|
|
* @see ConfigEntry
|
|
|
*/
|
|
@@ -16,4 +16,13 @@ import java.lang.annotation.Target;
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
public @interface ConfigEntries {
|
|
|
|
|
|
+ /**
|
|
|
+ * Applied to declare that a field should not be resolved as config entry.
|
|
|
+ */
|
|
|
+ @Target(ElementType.FIELD)
|
|
|
+ @Retention(RetentionPolicy.RUNTIME)
|
|
|
+ @interface Exclude {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|