The CR object has a method on it to provide the text... /** * Returns a user-friendly display name for the given Status value. * This is really a convenience method for accessing * TypedResource.getEnumDisplayName for this property. * * @param value The Status value to be converted to a display name. * @return A user-friendly display name for the given Status value. * @see #getStatus() * @see #getPossibleStatus() * @see TypedResource#getEnumDisplayName * @see PropertyNames#CR_STATUS */ public String getStatusDisplayName(int value) { The COM method name will probably be StatusDisplayName. it takes the numeric int value as input and should return the status text string as output.
↧