You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TypesCastOptions.java 914B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.rthoni.intellij.codefromds.dbo.options;
  2. import java.util.HashMap;
  3. import java.util.List;
  4. /**
  5. * Created by robin on 11/19/16.
  6. */
  7. public class TypesCastOptions {
  8. private String _arrayTemplate;
  9. private HashMap<String, HashMap<String, String>> _types;
  10. private List<String> _nonNullableTypes;
  11. public String getArrayTemplate() {
  12. return _arrayTemplate;
  13. }
  14. public void setArrayTemplate(String arrayTemplate) {
  15. _arrayTemplate = arrayTemplate;
  16. }
  17. public HashMap<String, HashMap<String, String>> getTypes() {
  18. return _types;
  19. }
  20. public void setTypes(HashMap<String, HashMap<String, String>> types) {
  21. _types = types;
  22. }
  23. public List<String> getNonNullableTypes() {
  24. return _nonNullableTypes;
  25. }
  26. public void setNonNullableTypes(List<String> nonNullableTypes) {
  27. _nonNullableTypes = nonNullableTypes;
  28. }
  29. }