Ran into an issue today with avro 1.5.3 where someone defined a enum as a inner class:
public class Foo {
public static enum Bar { ONE, TWO }
}
And Schema.validateName complained about the name Foo$Bar. Is there
any reason to have this restriction?
