public MovilizerParameterDescriptor() {
     this.parameterTypeField = parameterType.ANSWERID;
 }
 public MovilizerParameterDescriptor() {
     this.parameterTypeField = parameterType.answerid;
 }
 // For example:
 // public static string GetFullName(string first, string last)
 // In example above return type is string and it has 2 string parameters
 public static <return type> NameOfMethod(parameterType parameterValue, ...)
 {
     // Code here
     // This code can only access other static fields, properties and
     // methods. It cannot access anything non static (instance).
 }