blob: 25109b9d4be96444dbe40cfa0ca980d5a2af3aec [file] [log] [blame]
package edu.psu.swe.scim.spec.schema;
public interface ScimType {
/**
* ScimTypes are generally implemented as Java enums but when we're generating
* hashcodes, we need access to the name of the enum element rather than the
* ordinal.
*
* @return a String containing the enum value's name
*/
String name();
}