Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public enum PropertiesTypes {
INT("int"),
FLOAT("float"),
STRING("string"),
BOOL("bool");
BOOL("bool"),
ARRAY("array");

private final String propertyType;

Expand Down Expand Up @@ -66,7 +67,8 @@ public static String[] getPropertyTypes() {
valueOf(INT.toString()).getPropertyType(),
valueOf(FLOAT.toString()).getPropertyType(),
valueOf(STRING.toString()).getPropertyType(),
valueOf(BOOL.toString()).getPropertyType()
valueOf(BOOL.toString()).getPropertyType(),
valueOf(ARRAY.toString()).getPropertyType()
};
}

Expand Down
Loading