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 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. private List<String> _reservedWords;
  12. public String getArrayTemplate() {
  13. return _arrayTemplate;
  14. }
  15. public void setArrayTemplate(String arrayTemplate) {
  16. _arrayTemplate = arrayTemplate;
  17. }
  18. public HashMap<String, HashMap<String, String>> getTypes() {
  19. return _types;
  20. }
  21. public void setTypes(HashMap<String, HashMap<String, String>> types) {
  22. _types = types;
  23. }
  24. public List<String> getNonNullableTypes() {
  25. return _nonNullableTypes;
  26. }
  27. public void setNonNullableTypes(List<String> nonNullableTypes) {
  28. _nonNullableTypes = nonNullableTypes;
  29. }
  30. public List<String> getReservedWords() {
  31. return _reservedWords;
  32. }
  33. public void setReservedWords(List<String> reservedWords) {
  34. _reservedWords = reservedWords;
  35. }
  36. }