in src/main/java/org/apache/sling/distribution/DistributionRequestType.java [75:84]
public static DistributionRequestType fromName(@Nullable String n) {
if (n == null) {
return null;
}
try {
return DistributionRequestType.valueOf(n.toUpperCase());
} catch (IllegalArgumentException e) {
return null;
}
}