You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Get the value of constraint 'type' in IonType format.
* @return the value of 'type' in IonType format.
*/
public IonType getIonType() {
return IonType.valueOf(getIsl().get(KEYWORD_TYPE).toString().toUpperCase());
}
This method only work when the provided constraint type is one of core types. If the provided type is user-defined, this method won't work. And we need to look up the type definition by using method Schema#getType(String name) .
This method only work when the provided constraint type is one of core types. If the provided type is user-defined, this method won't work. And we need to look up the type definition by using method Schema#getType(String name) .
Referred comments: