On the contrary, if you read past the introduction of that page, the first paragraph states that the variants are called UpperCamelCase and lowerCamelCase and that some groups map the name camel case only to lowerCamelCase and refer to UpperCamelCase as PascalCase.
That said, I call them Upper and lower CamelCase. Also, the teams I am on at BBN practice UpperCamelCase for classes lowerCamelCase for methods/instance variables CAPS_AND_UNDERSCORES for enumerations and constants. oh, and lowercase.with.dots for package names.
no subject
I alternate between them: in most languages, I use PascalCase to handle classes/methods and then camelCase for parameters/variables.
Underscores and CAPITAL_LETTERS are what I use for constants.
no subject
no subject
That said, I call them Upper and lower CamelCase. Also, the teams I am on at BBN practice
UpperCamelCase for classes
lowerCamelCase for methods/instance variables
CAPS_AND_UNDERSCORES for enumerations and constants.
oh, and lowercase.with.dots for package names.