(String name, boolean pseudo, Object marshaller)
| 758 | } |
| 759 | |
| 760 | private Key(String name, boolean pseudo, Object marshaller) { |
| 761 | this.originalName = checkNotNull(name, "name"); |
| 762 | this.name = validateName(this.originalName.toLowerCase(Locale.ROOT), pseudo); |
| 763 | this.nameBytes = this.name.getBytes(US_ASCII); |
| 764 | this.marshaller = marshaller; |
| 765 | } |
| 766 | |
| 767 | /** |
| 768 | * Returns the original name used to create this key. |
nothing calls this directly
no test coverage detected