Adds javadoc to enums

This commit is contained in:
spencergibb
2022-01-26 16:13:30 -05:00
parent 162409f6fc
commit 3571e73165
2 changed files with 18 additions and 2 deletions

View File

@@ -58,7 +58,15 @@ public interface HttpHeadersFilter {
enum Type {
REQUEST, RESPONSE
/**
* Filter for request headers.
*/
REQUEST,
/**
* Filter for response headers.
*/
RESPONSE
}

View File

@@ -83,6 +83,9 @@ public interface ShortcutConfigurable {
enum ShortcutType {
/**
* Default shortcut type.
*/
DEFAULT {
@Override
public Map<String, Object> normalize(Map<String, String> args, ShortcutConfigurable shortcutConf,
@@ -100,6 +103,9 @@ public interface ShortcutConfigurable {
}
},
/**
* List shortcut type.
*/
GATHER_LIST {
@Override
public Map<String, Object> normalize(Map<String, String> args, ShortcutConfigurable shortcutConf,
@@ -116,7 +122,9 @@ public interface ShortcutConfigurable {
}
},
// list is all elements except last which is a boolean flag
/**
* List is all elements except last which is a boolean flag.
*/
GATHER_LIST_TAIL_FLAG {
@Override
public Map<String, Object> normalize(Map<String, String> args, ShortcutConfigurable shortcutConf,