Returns string representation of ManagedPropertyType.
Source
static String typeStringForType(ManagedPropertyType type) { switch (type) { case ManagedPropertyType.integer: return "integer"; case ManagedPropertyType.doublePrecision: return "double"; case ManagedPropertyType.bigInteger: return "bigInteger"; case ManagedPropertyType.boolean: return "boolean"; case ManagedPropertyType.datetime: return "datetime"; case ManagedPropertyType.string: return "string"; case ManagedPropertyType.transientList: return null; case ManagedPropertyType.transientMap: return null; } return null; }