private Prefixed() {
}
public static double getFactor( @Nonnull Class<? extends Annotation> unit ) {
Prefix prefixAnnotation = getPrefixAnnotation( unit );
if ( prefixAnnotation == null ) {
throw new IllegalArgumentException( unit.getName() + " is not annotated with " + Prefix.class.getName() );
}
return prefixAnnotation.value();
}