1 #
   2 # Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Messages in this file which use "placeholders" for values (e.g. {0}, {1})
  27 # are preceded by a stylized comment describing the type of the corresponding
  28 # values.
  29 # The simple types currently in use are:
  30 #
  31 # annotation        annotation compound
  32 # boolean           true or false
  33 # diagnostic        a sub-message; see compiler.misc.*
  34 # fragment          similar to 'message segment', but with more specific type
  35 # modifier          a Java modifier; e.g. public, private, protected
  36 # file              a file URL
  37 # file object       a file URL - similar to 'file' but typically used for source/class files, hence more specific
  38 # flag              a Flags.Flag instance
  39 # name              a name, typically a Java identifier
  40 # number            an integer
  41 # option name       the name of a command line option
  42 # path              a path
  43 # profile           a profile name
  44 # source            a source version number, such as 1.5, 1.6, 1.7, taken from a com.sun.tools.javac.code.Source
  45 # source version    a source version number, such as 1.5, 1.6, 1.7, taken from a javax.lang.model.SourceVersion
  46 # string            a general string
  47 # symbol            the name of a declared type
  48 # symbol kind       the kind of a symbol (i.e. method, variable)
  49 # kind name         an informative description of the kind of a declaration; see compiler.misc.kindname.*
  50 # target            a target version number, such as 1.5, 1.6, 1.7, taken from a com.sun.tools.javac.jvm.Target
  51 # token             the name of a non-terminal in source code; see compiler.misc.token.*
  52 # tree tag          the name of a non-terminal in source code; see compiler.misc.token.*
  53 # type              a Java type; e.g. int, X, X<T>
  54 # url               a URL
  55 # object            a Java object (unspecified)
  56 # unused            the value is not used in this message
  57 #
  58 # The following compound types are also used:
  59 #
  60 # collection of X   a comma-separated collection of items; e.g. collection of type
  61 # list of X         a comma-separated list of items; e.g. list of type
  62 # set of X          a comma-separated set of items; e.g. set of modifier
  63 #
  64 # These may be composed:
  65 #
  66 # list of type or message segment
  67 #
  68 # The following type aliases are supported:
  69 #
  70 # message segment --> diagnostic or fragment
  71 # file name --> file, path or file object
  72 #
  73 # Custom comments are supported in parenthesis i.e.
  74 #
  75 # number (classfile major version)
  76 #
  77 # These comments are used internally in order to generate an enum-like class declaration containing
  78 # a method/field for each of the diagnostic keys listed here. Those methods/fields can then be used
  79 # by javac code to build diagnostics in a type-safe fashion.
  80 #
  81 # In addition, these comments are verified by the jtreg test test/tools/javac/diags/MessageInfo,
  82 # using info derived from the collected set of examples in test/tools/javac/diags/examples.
  83 # MessageInfo can also be run as a standalone utility providing more facilities
  84 # for manipulating this file. For more details, see MessageInfo.java.
  85 
  86 ##
  87 ## errors
  88 ##
  89 
  90 # 0: symbol
  91 compiler.err.abstract.cant.be.instantiated=\
  92     {0} is abstract; cannot be instantiated
  93 
  94 compiler.err.abstract.meth.cant.have.body=\
  95     abstract methods cannot have a body
  96 
  97 # 0: kind name, 1: symbol
  98 compiler.err.already.annotated=\
  99     {0} {1} has already been annotated
 100 
 101 # 0: kind name, 1: symbol, 2: kind name, 3: symbol
 102 compiler.err.already.defined=\
 103     {0} {1} is already defined in {2} {3}
 104 
 105 # 0: kind name, 1: symbol, 2: kind name, 3: kind name, 4: symbol
 106 compiler.err.already.defined.in.clinit=\
 107     {0} {1} is already defined in {2} of {3} {4}
 108 
 109 # 0: symbol
 110 compiler.err.already.defined.single.import=\
 111     a type with the same simple name is already defined by the single-type-import of {0}
 112 
 113 # 0: symbol
 114 compiler.err.already.defined.static.single.import=\
 115     a type with the same simple name is already defined by the static single-type-import of {0}
 116 
 117 # 0: symbol
 118 compiler.err.already.defined.this.unit=\
 119     {0} is already defined in this compilation unit
 120 
 121 compiler.err.annotation.missing.element.value=\
 122     annotation is missing element value
 123 
 124 # 0: type, 1: list of name
 125 compiler.err.annotation.missing.default.value=\
 126     annotation @{0} is missing a default value for the element ''{1}''
 127 
 128 # 0: type, 1: list of name
 129 compiler.err.annotation.missing.default.value.1=\
 130     annotation @{0} is missing default values for elements {1}
 131 
 132 # 0: type
 133 compiler.err.annotation.not.valid.for.type=\
 134     annotation not valid for an element of type {0}
 135 
 136 compiler.err.annotation.type.not.applicable=\
 137     annotation interface not applicable to this kind of declaration
 138 
 139 # 0: type
 140 compiler.err.annotation.type.not.applicable.to.type=\
 141     annotation @{0} not applicable in this type context
 142 
 143 compiler.err.annotation.value.must.be.annotation=\
 144     annotation value must be an annotation
 145 
 146 compiler.err.annotation.value.must.be.class.literal=\
 147     annotation value must be a class literal
 148 
 149 compiler.err.annotation.value.must.be.name.value=\
 150     annotation values must be of the form ''name=value''
 151 
 152 compiler.err.annotation.value.not.allowable.type=\
 153     annotation value not of an allowable type
 154 
 155 compiler.err.expression.not.allowable.as.annotation.value=\
 156     expression not allowed as annotation value
 157 
 158 # 0: type, 1: name
 159 compiler.err.annotation.unrecognized.attribute.name=\
 160     annotation @{0} has an unknown attribute named ''{1}''
 161 
 162 compiler.err.anon.class.impl.intf.no.args=\
 163     anonymous class implements interface; cannot have arguments
 164 
 165 compiler.err.anon.class.impl.intf.no.typeargs=\
 166     anonymous class implements interface; cannot have type arguments
 167 
 168 compiler.err.anon.class.impl.intf.no.qual.for.new=\
 169     anonymous class implements interface; cannot have qualifier for new
 170 
 171 compiler.err.cant.inherit.from.anon=\
 172     cannot inherit from anonymous class
 173 
 174 # 0: symbol, 1: symbol, 2: symbol
 175 compiler.err.array.and.varargs=\
 176     cannot declare both {0} and {1} in {2}
 177 
 178 compiler.err.array.dimension.missing=\
 179     array dimension missing
 180 
 181 compiler.err.illegal.array.creation.both.dimension.and.initialization=\
 182     array creation with both dimension expression and initialization is illegal
 183 
 184 # 0: type
 185 compiler.err.array.req.but.found=\
 186     array required, but {0} found
 187 
 188 compiler.err.attribute.value.must.be.constant=\
 189     element value must be a constant expression
 190 
 191 # 0: string (statement type)
 192 compiler.err.bad.initializer=\
 193     bad initializer for {0}
 194 
 195 compiler.err.break.outside.switch.loop=\
 196     break outside switch or loop
 197 
 198 compiler.err.break.outside.switch.expression=\
 199     attempt to break out of a switch expression
 200 
 201 compiler.err.continue.outside.switch.expression=\
 202     attempt to continue out of a switch expression
 203 
 204 compiler.err.return.outside.switch.expression=\
 205     attempt to return out of a switch expression
 206 
 207 compiler.err.rule.completes.normally=\
 208     switch rule completes without providing a value\n\
 209     (switch rules in switch expressions must either provide a value or throw)
 210 
 211 compiler.err.switch.expression.completes.normally=\
 212     switch expression completes without providing a value\n\
 213     (switch expressions must either provide a value or throw for all possible input values)
 214 
 215 compiler.err.no.switch.expression =\
 216     yield outside of switch expression
 217 
 218 compiler.err.no.switch.expression.qualify=\
 219     yield outside of switch expression\n\
 220     (to invoke a method called yield, qualify the yield with a receiver or type name)
 221 
 222 compiler.err.invalid.yield=\
 223     invalid use of a restricted identifier ''yield''\n\
 224     (to invoke a method called yield, qualify the yield with a receiver or type name)
 225 
 226 compiler.warn.invalid.yield=\
 227     ''yield'' may become a restricted identifier in a future release\n\
 228     (to invoke a method called yield, qualify the yield with a receiver or type name)
 229 
 230 compiler.err.switch.expression.empty=\
 231     switch expression does not have any case clauses
 232 
 233 compiler.err.switch.expression.no.result.expressions=\
 234     switch expression does not have any result expressions
 235 
 236 compiler.err.call.must.only.appear.in.ctor=\
 237     explicit constructor invocation may only appear within a constructor body
 238 
 239 compiler.err.redundant.superclass.init=\
 240     redundant explicit constructor invocation
 241 
 242 compiler.err.ctor.calls.not.allowed.here=\
 243     explicit constructor invocation not allowed here
 244 
 245 compiler.err.return.before.superclass.initialized=\
 246     ''return'' not allowed before explicit constructor invocation
 247 
 248 # 0: symbol kind, 1: name, 2: symbol kind, 3: type, 4: message segment
 249 compiler.err.cant.apply.symbol.noargs=\
 250     {0} {1} in {2} {3} cannot be applied to given types;\n\
 251     reason: {4}
 252 
 253 # 0: symbol kind, 1: name, 2: list of type or message segment, 3: list of type or message segment, 4: symbol kind, 5: type, 6: message segment
 254 compiler.err.cant.apply.symbol=\
 255     {0} {1} in {4} {5} cannot be applied to given types;\n\
 256     required: {2}\n\
 257     found:    {3}\n\
 258     reason: {6}
 259 
 260 # 0: symbol kind, 1: name, 2: list of type
 261 compiler.err.cant.apply.symbols=\
 262     no suitable {0} found for {1}({2})
 263 
 264 # 0: symbol kind, 1: name, 2: list of type or message segment, 3: list of type or message segment, 4: symbol kind, 5: type, 6: message segment
 265 compiler.misc.cant.apply.symbol=\
 266     {0} {1} in {4} {5} cannot be applied to given types\n\
 267     required: {2}\n\
 268     found:    {3}\n\
 269     reason: {6}
 270 
 271 # 0: list of type or message segment, 1: list of type or message segment, 2: message segment
 272 compiler.misc.cant.apply.array.ctor=\
 273     cannot create array from given types\n\
 274     required: {0}\n\
 275     found:    {1}\n\
 276     reason:   {2}
 277 
 278 # 0: symbol kind, 1: name, 2: list of type
 279 compiler.misc.cant.apply.symbols=\
 280     no suitable {0} found for {1}({2})
 281 
 282 # 0: kind name, 1: symbol
 283 compiler.misc.no.abstracts=\
 284     no abstract method found in {0} {1}
 285 
 286 # 0: kind name, 1: symbol
 287 compiler.misc.incompatible.abstracts=\
 288     multiple non-overriding abstract methods found in {0} {1}
 289 
 290 compiler.err.bad.functional.intf.anno=\
 291     Unexpected @FunctionalInterface annotation
 292 
 293 # 0: message segment
 294 compiler.err.bad.functional.intf.anno.1=\
 295     Unexpected @FunctionalInterface annotation\n\
 296     {0}
 297 
 298 # 0: message segment
 299 compiler.err.anonymous.diamond.method.does.not.override.superclass=\
 300     method does not override or implement a method from a supertype\n\
 301     {0}
 302 
 303 # 0: symbol
 304 compiler.misc.not.a.functional.intf=\
 305     {0} is not a functional interface
 306 
 307 # 0: symbol, 1: message segment
 308 compiler.misc.not.a.functional.intf.1=\
 309     {0} is not a functional interface\n\
 310     {1}
 311 
 312 # 0: type, 1: kind name, 2: symbol
 313 compiler.misc.invalid.generic.lambda.target=\
 314     invalid functional descriptor for lambda expression\n\
 315     method {0} in {1} {2} is generic
 316 
 317 # 0: kind name, 1: symbol
 318 compiler.misc.incompatible.descs.in.functional.intf=\
 319     incompatible function descriptors found in {0} {1}
 320 
 321 # 0: name, 1: list of type, 2: type, 3: list of type
 322 compiler.misc.descriptor=\
 323     descriptor: {2} {0}({1})
 324 
 325 # 0: name, 1: list of type, 2: type, 3: list of type
 326 compiler.misc.descriptor.throws=\
 327     descriptor: {2} {0}({1}) throws {3}
 328 
 329 # 0: type
 330 compiler.misc.no.suitable.functional.intf.inst=\
 331     cannot infer functional interface descriptor for {0}
 332 
 333 # 0: message segment
 334 compiler.misc.bad.intersection.target.for.functional.expr=\
 335     bad intersection type target for lambda or method reference\n\
 336     {0}
 337 
 338 # 0: symbol or type
 339 compiler.misc.not.an.intf.component=\
 340     component type {0} is not an interface
 341 
 342 # 0: kind name, 1: message segment
 343 compiler.err.invalid.mref=\
 344     invalid {0} reference\n\
 345     {1}
 346 
 347 # 0: kind name, 1: message segment
 348 compiler.misc.invalid.mref=\
 349     invalid {0} reference\n\
 350     {1}
 351 
 352 compiler.misc.static.mref.with.targs=\
 353     parameterized qualifier on static method reference
 354 
 355 # 0: set of flag or string, 1: symbol
 356 compiler.err.cant.assign.val.to.var=\
 357     cannot assign a value to {0} variable {1}
 358 
 359 compiler.err.cant.assign.val.to.this=\
 360     cannot assign to ''this''
 361 
 362 # 0: symbol, 1: message segment
 363 compiler.err.cant.ref.non.effectively.final.var=\
 364     local variables referenced from {1} must be final or effectively final
 365 
 366 compiler.err.try.with.resources.expr.needs.var=\
 367     the try-with-resources resource must either be a variable declaration or an expression denoting \
 368 a reference to a final or effectively final variable
 369 
 370 # 0: symbol
 371 compiler.err.try.with.resources.expr.effectively.final.var=\
 372     variable {0} used as a try-with-resources resource neither final nor effectively final
 373 
 374 
 375 compiler.misc.lambda=\
 376     a lambda expression
 377 
 378 compiler.misc.inner.cls=\
 379     an inner class
 380 
 381 compiler.misc.guard=\
 382     a guard
 383 
 384 # 0: type
 385 compiler.err.cant.deref=\
 386     {0} cannot be dereferenced
 387 
 388 compiler.err.cant.extend.intf.annotation=\
 389     ''extends'' not allowed for @interfaces
 390 
 391 compiler.err.annotation.decl.not.allowed.here=\
 392     annotation interface declaration not allowed here
 393 
 394 # 0: symbol
 395 compiler.err.cant.inherit.from.final=\
 396     cannot inherit from final {0}
 397 
 398 # 0: symbol or name
 399 compiler.err.cant.ref.before.ctor.called=\
 400     cannot reference {0} before supertype constructor has been called
 401 
 402 # 0: symbol or name
 403 compiler.err.cant.assign.initialized.before.ctor.called=\
 404     cannot assign initialized field ''{0}'' before supertype constructor has been called
 405 
 406 compiler.err.cant.select.static.class.from.param.type=\
 407     cannot select a static class from a parameterized type
 408 
 409 # 0: symbol, 1: string, 2: string
 410 compiler.err.cant.inherit.diff.arg=\
 411     {0} cannot be inherited with different arguments: <{1}> and <{2}>
 412 
 413 compiler.err.catch.without.try=\
 414     ''catch'' without ''try''
 415 
 416 # 0: kind name, 1: symbol
 417 compiler.err.clash.with.pkg.of.same.name=\
 418     {0} {1} clashes with package of same name
 419 
 420 compiler.err.class.not.allowed=\
 421     class, interface or enum declaration not allowed here
 422 
 423 compiler.err.const.expr.req=\
 424     constant expression required
 425 
 426 compiler.err.pattern.or.enum.req=\
 427     pattern or enum constant required
 428 
 429 compiler.err.cont.outside.loop=\
 430     continue outside of loop
 431 
 432 # 0: symbol or type
 433 compiler.err.cyclic.inheritance=\
 434     cyclic inheritance involving {0}
 435 
 436 # 0: symbol
 437 compiler.err.cyclic.annotation.element=\
 438     type of element {0} is cyclic
 439 
 440 # 0: symbol
 441 compiler.err.call.to.super.not.allowed.in.enum.ctor=\
 442     call to super not allowed in enum constructor
 443 
 444 # 0: type
 445 compiler.err.no.superclass=\
 446     {0} has no superclass.
 447 
 448 # 0: symbol, 1: type, 2: symbol, 3: type, 4: type
 449 compiler.err.concrete.inheritance.conflict=\
 450     methods {0} from {1} and {2} from {3} are inherited with the same signature
 451 
 452 compiler.err.default.allowed.in.intf.annotation.member=\
 453     default value only allowed in an annotation interface declaration
 454 
 455 # 0: symbol
 456 compiler.err.doesnt.exist=\
 457     package {0} does not exist
 458 
 459 # 0: type
 460 compiler.err.duplicate.annotation.invalid.repeated=\
 461     annotation {0} is not a valid repeatable annotation
 462 
 463 # 0: name, 1: type
 464 compiler.err.duplicate.annotation.member.value=\
 465     duplicate element ''{0}'' in annotation @{1}.
 466 
 467 # 0: type
 468 compiler.err.duplicate.annotation.missing.container=\
 469     {0} is not a repeatable annotation interface
 470 
 471 # 0: symbol
 472 compiler.err.invalid.repeatable.annotation=\
 473     duplicate annotation: {0} is annotated with an invalid @Repeatable annotation
 474 
 475 # 0: symbol or type
 476 compiler.err.invalid.repeatable.annotation.no.value=\
 477     {0} is not a valid @Repeatable, no value element method declared
 478 
 479 # 0: type, 1: number
 480 compiler.err.invalid.repeatable.annotation.multiple.values=\
 481     {0} is not a valid @Repeatable, {1} element methods named ''value'' declared
 482 
 483 # 0: type
 484 compiler.err.invalid.repeatable.annotation.invalid.value=\
 485     {0} is not a valid @Repeatable: invalid value element
 486 
 487 # 0: symbol or type, 1: type, 2: type
 488 compiler.err.invalid.repeatable.annotation.value.return=\
 489     containing annotation interface ({0}) must declare an element named ''value'' of type {2}
 490 
 491 # 0: symbol or type, 1: symbol
 492 compiler.err.invalid.repeatable.annotation.elem.nondefault=\
 493     containing annotation interface ({0}) does not have a default value for element {1}
 494 
 495 # 0: symbol, 1: string, 2: symbol, 3: string
 496 compiler.err.invalid.repeatable.annotation.retention=\
 497     retention of containing annotation interface ({0}) is shorter than the retention of repeatable annotation interface ({2})
 498 
 499 # 0: symbol, 1: symbol
 500 compiler.err.invalid.repeatable.annotation.not.documented=\
 501     repeatable annotation interface ({1}) is @Documented while containing annotation interface ({0}) is not
 502 
 503 # 0: symbol, 1: symbol
 504 compiler.err.invalid.repeatable.annotation.not.inherited=\
 505     repeatable annotation interface ({1}) is @Inherited while containing annotation interface ({0}) is not
 506 
 507 # 0: symbol, 1: symbol
 508 compiler.err.invalid.repeatable.annotation.incompatible.target=\
 509     containing annotation interface ({0}) is applicable to more targets than repeatable annotation interface ({1})
 510 
 511 # 0: symbol
 512 compiler.err.invalid.repeatable.annotation.repeated.and.container.present=\
 513     container {0} must not be present at the same time as the element it contains
 514 
 515 # 0: type, 1: symbol
 516 compiler.err.invalid.repeatable.annotation.not.applicable=\
 517     container {0} is not applicable to element {1}
 518 
 519 # 0: type
 520 compiler.err.invalid.repeatable.annotation.not.applicable.in.context=\
 521     container {0} is not applicable in this type context
 522 
 523 # 0: name
 524 compiler.err.duplicate.class=\
 525     duplicate class: {0}
 526 
 527 # 0: string
 528 compiler.err.bad.file.name=\
 529     bad file name: {0}
 530 
 531 compiler.err.implicit.class.should.not.have.package.declaration=\
 532     implicitly declared class should not have package declaration
 533 
 534 compiler.err.implicit.class.does.not.have.main.method=\
 535     implicitly declared class does not have main method in the form of void main() or void main(String[] args)
 536 
 537 # 0: name, 1: name
 538 compiler.err.same.binary.name=\
 539     classes: {0} and {1} have the same binary name
 540 
 541 compiler.err.duplicate.case.label=\
 542     duplicate case label
 543 
 544 compiler.err.pattern.dominated=\
 545     this case label is dominated by a preceding case label
 546 
 547 compiler.err.duplicate.default.label=\
 548     duplicate default label
 549 
 550 compiler.err.duplicate.unconditional.pattern=\
 551     duplicate unconditional pattern
 552 
 553 compiler.err.unconditional.pattern.and.default=\
 554     switch has both an unconditional pattern and a default label
 555 
 556 compiler.err.unconditional.pattern.and.both.boolean.values=\
 557     switch has both boolean values and an unconditional pattern
 558 
 559 compiler.err.default.and.both.boolean.values=\
 560     switch has both boolean values and a default label
 561 
 562 compiler.err.guard.not.allowed=\
 563     guards are only allowed for case with a pattern
 564 
 565 compiler.err.guard.has.constant.expression.false=\
 566     this case label has a guard that is a constant expression with value ''false''
 567 
 568 # 0: symbol
 569 compiler.err.cannot.assign.not.declared.guard=\
 570     cannot assign to {0}, as it was not declared inside the guard
 571 
 572 # 0: type, 1: type
 573 compiler.err.constant.label.not.compatible=\
 574     constant label of type {0} is not compatible with switch selector type {1}
 575 
 576 compiler.err.flows.through.to.pattern=\
 577     illegal fall-through to a pattern\n\
 578     (the previous case label is missing a break)
 579 
 580 compiler.err.flows.through.from.pattern=\
 581     illegal fall-through from a pattern\n\
 582     (the current case label is missing a break)
 583 
 584 compiler.err.invalid.case.label.combination=\
 585     invalid case label combination
 586 
 587 compiler.err.default.label.not.allowed=\
 588     default label not allowed here
 589 
 590 compiler.err.pattern.type.cannot.infer=\
 591     cannot infer pattern type
 592 
 593 compiler.err.else.without.if=\
 594     ''else'' without ''if''
 595 
 596 compiler.err.empty.char.lit=\
 597     empty character literal
 598 
 599 # 0: symbol
 600 compiler.err.encl.class.required=\
 601     an enclosing instance that contains {0} is required
 602 
 603 compiler.err.enum.annotation.must.be.enum.constant=\
 604     an enum annotation value must be an enum constant
 605 
 606 compiler.err.enum.cant.be.instantiated=\
 607     enum classes may not be instantiated
 608 
 609 compiler.err.enum.label.must.be.unqualified.enum=\
 610     an enum switch case label must be the unqualified name of an enumeration constant
 611 
 612 compiler.err.enum.label.must.be.enum.constant=\
 613     an enum switch constant case label must be an enumeration constant
 614 
 615 compiler.err.enum.no.subclassing=\
 616     classes cannot directly extend java.lang.Enum
 617 
 618 compiler.err.enum.types.not.extensible=\
 619     enum classes are not extensible
 620 
 621 compiler.err.enum.no.finalize=\
 622     enums cannot have finalize methods
 623 
 624 compiler.err.enum.cant.be.generic=\
 625     enums cannot be generic
 626 
 627 # 0: file name, 1: string
 628 compiler.err.error.reading.file=\
 629     error reading {0}; {1}
 630 
 631 # 0: type
 632 compiler.err.except.already.caught=\
 633     exception {0} has already been caught
 634 
 635 # 0: type
 636 compiler.err.except.never.thrown.in.try=\
 637     exception {0} is never thrown in body of corresponding try statement
 638 
 639 # 0: symbol
 640 compiler.err.final.parameter.may.not.be.assigned=\
 641     final parameter {0} may not be assigned
 642 
 643 # 0: symbol
 644 compiler.err.try.resource.may.not.be.assigned=\
 645     auto-closeable resource {0} may not be assigned
 646 
 647 # 0: symbol
 648 compiler.err.multicatch.parameter.may.not.be.assigned=\
 649     multi-catch parameter {0} may not be assigned
 650 
 651 # 0: type, 1: type
 652 compiler.err.multicatch.types.must.be.disjoint=\
 653     Alternatives in a multi-catch statement cannot be related by subclassing\n\
 654     Alternative {0} is a subclass of alternative {1}
 655 
 656 compiler.err.finally.without.try=\
 657     ''finally'' without ''try''
 658 
 659 # 0: type, 1: message segment
 660 compiler.err.foreach.not.applicable.to.type=\
 661     for-each not applicable to expression type\n\
 662     required: {1}\n\
 663     found:    {0}
 664 
 665 compiler.err.fp.number.too.large=\
 666     floating-point number too large
 667 
 668 compiler.err.fp.number.too.small=\
 669     floating-point number too small
 670 
 671 compiler.err.generic.array.creation=\
 672     generic array creation
 673 
 674 compiler.err.generic.throwable=\
 675     a generic class may not extend java.lang.Throwable
 676 
 677 # 0: symbol
 678 compiler.err.icls.cant.have.static.decl=\
 679     Illegal static declaration in inner class {0}\n\
 680     modifier \''static\'' is only allowed in constant variable declarations
 681 
 682 # 0: string
 683 compiler.err.illegal.char=\
 684     illegal character: ''{0}''
 685 
 686 # 0: string, 1: string
 687 compiler.err.illegal.char.for.encoding=\
 688     unmappable character (0x{0}) for encoding {1}
 689 
 690 # 0: set of flag, 1: set of flag
 691 compiler.err.illegal.combination.of.modifiers=\
 692     illegal combination of modifiers: {0} and {1}
 693 
 694 compiler.err.illegal.enum.static.ref=\
 695     illegal reference to static field from initializer
 696 
 697 compiler.err.illegal.esc.char=\
 698     illegal escape character
 699 
 700 compiler.err.illegal.forward.ref=\
 701     illegal forward reference
 702 
 703 # 0: symbol, 1: object
 704 compiler.err.not.in.profile=\
 705     {0} is not available in profile ''{1}''
 706 
 707 # 0: symbol
 708 compiler.warn.forward.ref=\
 709     reference to variable ''{0}'' before it has been initialized
 710 
 711 compiler.warn.possible.this.escape=\
 712     possible ''this'' escape before subclass is fully initialized
 713 
 714 compiler.warn.possible.this.escape.location=\
 715     previous possible ''this'' escape happens here via invocation
 716 
 717 compiler.err.illegal.self.ref=\
 718     self-reference in initializer
 719 
 720 # 0: symbol
 721 compiler.warn.self.ref=\
 722     self-reference in initializer of variable ''{0}''
 723 
 724 # 0: type
 725 compiler.err.illegal.initializer.for.type=\
 726     illegal initializer for {0}
 727 
 728 compiler.err.illegal.line.end.in.char.lit=\
 729     illegal line end in character literal
 730 
 731 compiler.err.illegal.text.block.open=\
 732     illegal text block open delimiter sequence, missing line terminator
 733 
 734 compiler.warn.inconsistent.white.space.indentation=\
 735     inconsistent white space indentation
 736 
 737 compiler.warn.trailing.white.space.will.be.removed=\
 738     trailing white space will be removed
 739 
 740 compiler.err.illegal.nonascii.digit=\
 741     illegal non-ASCII digit
 742 
 743 compiler.err.illegal.underscore=\
 744     illegal underscore
 745 
 746 compiler.err.illegal.dot=\
 747     illegal ''.''
 748 
 749 compiler.err.illegal.digit.in.binary.literal=\
 750     illegal digit in a binary literal
 751 
 752 compiler.err.illegal.digit.in.octal.literal=\
 753     illegal digit in an octal literal
 754 
 755 # 0: symbol
 756 compiler.err.illegal.qual.not.icls=\
 757     illegal qualifier; {0} is not an inner class
 758 
 759 compiler.err.illegal.start.of.expr=\
 760     illegal start of expression
 761 
 762 compiler.err.illegal.start.of.stmt=\
 763     illegal start of statement
 764 
 765 compiler.err.illegal.start.of.type=\
 766     illegal start of type
 767 
 768 compiler.err.illegal.parenthesized.expression=\
 769     illegal parenthesized expression
 770 
 771 compiler.err.illegal.unicode.esc=\
 772     illegal unicode escape
 773 
 774 # 0: symbol
 775 compiler.err.import.requires.canonical=\
 776     import requires canonical name for {0}
 777 
 778 compiler.err.improperly.formed.type.param.missing=\
 779     improperly formed type, some parameters are missing or misplaced
 780 
 781 compiler.err.improperly.formed.type.inner.raw.param=\
 782     improperly formed type, type arguments given on a raw type
 783 
 784 # 0: type, 1: type
 785 compiler.err.incomparable.types=\
 786     incomparable types: {0} and {1}
 787 
 788 # 0: string
 789 compiler.err.int.number.too.large=\
 790     integer number too large
 791 
 792 compiler.err.intf.annotation.members.cant.have.params=\
 793     elements in annotation interface declarations cannot declare formal parameters
 794 
 795 # 0: symbol
 796 compiler.err.intf.annotation.cant.have.type.params=\
 797     annotation interface {0} cannot be generic
 798 
 799 compiler.err.intf.annotation.members.cant.have.type.params=\
 800     elements in annotation interface declarations cannot be generic methods
 801 
 802 # 0: symbol, 1: type
 803 compiler.err.intf.annotation.member.clash=\
 804     annotation interface {1} declares an element with the same name as method {0}
 805 
 806 compiler.err.intf.expected.here=\
 807     interface expected here
 808 
 809 compiler.err.intf.meth.cant.have.body=\
 810     interface abstract methods cannot have body
 811 
 812 compiler.err.invalid.annotation.member.type=\
 813     invalid type for annotation interface element
 814 
 815 compiler.err.invalid.binary.number=\
 816     binary numbers must contain at least one binary digit
 817 
 818 compiler.err.invalid.hex.number=\
 819     hexadecimal numbers must contain at least one hexadecimal digit
 820 
 821 compiler.err.invalid.meth.decl.ret.type.req=\
 822     invalid method declaration; return type required
 823 
 824 compiler.err.varargs.and.old.array.syntax=\
 825     legacy array notation not allowed on variable-arity parameter
 826 
 827 compiler.err.varargs.and.receiver =\
 828     varargs notation not allowed on receiver parameter
 829 
 830 compiler.err.varargs.must.be.last =\
 831     varargs parameter must be the last parameter
 832 
 833 compiler.err.array.and.receiver =\
 834     legacy array notation not allowed on receiver parameter
 835 
 836 compiler.err.wrong.receiver =\
 837     wrong receiver parameter name
 838 
 839 compiler.err.variable.not.allowed=\
 840     variable declaration not allowed here
 841 
 842 # 0: name
 843 compiler.err.label.already.in.use=\
 844     label {0} already in use
 845 
 846 compiler.err.local.enum=\
 847     enum classes must not be local
 848 
 849 compiler.err.cannot.create.array.with.type.arguments=\
 850     cannot create array with type arguments
 851 
 852 compiler.err.cannot.create.array.with.diamond=\
 853     cannot create array with ''<>''
 854 
 855 compiler.err.invalid.module.directive=\
 856   module directive keyword or ''}'' expected
 857 
 858 #
 859 # limits.  We don't give the limits in the diagnostic because we expect
 860 # them to change, yet we want to use the same diagnostic.  These are all
 861 # detected during code generation.
 862 #
 863 compiler.err.limit.code=\
 864     code too large
 865 
 866 compiler.err.limit.code.too.large.for.try.stmt=\
 867     code too large for try statement
 868 
 869 compiler.err.limit.dimensions=\
 870     array type has too many dimensions
 871 
 872 compiler.err.limit.locals=\
 873     too many local variables
 874 
 875 compiler.err.limit.parameters=\
 876     too many parameters
 877 
 878 compiler.err.limit.pool=\
 879     too many constants
 880 
 881 compiler.err.limit.pool.in.class=\
 882     too many constants in class {0}
 883 
 884 compiler.err.limit.stack=\
 885     code requires too much stack
 886 
 887 compiler.err.limit.string=\
 888     constant string too long
 889 
 890 # 0: string
 891 compiler.err.limit.string.overflow=\
 892     UTF8 representation for string \"{0}...\" is too long for the constant pool
 893 
 894 compiler.err.malformed.fp.lit=\
 895     malformed floating-point literal
 896 
 897 compiler.err.method.does.not.override.superclass=\
 898     method does not override or implement a method from a supertype
 899 
 900 compiler.err.static.methods.cannot.be.annotated.with.override=\
 901     static methods cannot be annotated with @Override
 902 
 903 compiler.err.missing.meth.body.or.decl.abstract=\
 904     missing method body, or declare abstract
 905 
 906 compiler.err.missing.ret.stmt=\
 907     missing return statement
 908 
 909 # 0: type
 910 compiler.misc.missing.ret.val=\
 911     missing return value
 912 
 913 compiler.misc.unexpected.ret.val=\
 914     unexpected return value
 915 
 916 # 0: set of flag
 917 compiler.err.mod.not.allowed.here=\
 918     modifier {0} not allowed here
 919 
 920 # 0: name
 921 compiler.err.modifier.not.allowed.here=\
 922     modifier {0} not allowed here
 923 
 924 compiler.err.intf.not.allowed.here=\
 925     interface not allowed here
 926 
 927 # 0: symbol, 1: symbol
 928 compiler.err.name.clash.same.erasure=\
 929     name clash: {0} and {1} have the same erasure
 930 
 931 # 0: name, 1: list of type, 2: symbol, 3: name, 4: list of type, 5: symbol
 932 compiler.err.name.clash.same.erasure.no.override=\
 933     name clash: {0}({1}) in {2} and {3}({4}) in {5} have the same erasure, yet neither overrides the other
 934 
 935 # 0: string, 1: name, 2: name, 3: list of type, 4: symbol, 5: name, 6: list of type, 7: symbol
 936 compiler.err.name.clash.same.erasure.no.override.1=\
 937     name clash: {0} {1} has two methods with the same erasure, yet neither overrides the other\n\
 938     first method:  {2}({3}) in {4}\n\
 939     second method: {5}({6}) in {7}
 940 
 941 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
 942 compiler.err.name.clash.same.erasure.no.hide=\
 943     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither hides the other
 944 
 945 compiler.err.name.reserved.for.internal.use=\
 946     {0} is reserved for internal use
 947 
 948 compiler.err.native.meth.cant.have.body=\
 949     native methods cannot have a body
 950 
 951 
 952 # 0: message segment
 953 compiler.misc.incompatible.type.in.conditional=\
 954     bad type in conditional expression\n\
 955     {0}
 956 
 957 compiler.misc.conditional.target.cant.be.void=\
 958     target-type for conditional expression cannot be void
 959 
 960 compiler.misc.switch.expression.target.cant.be.void=\
 961     target-type for switch expression cannot be void
 962 
 963 # 0: message segment
 964 compiler.misc.incompatible.type.in.switch.expression=\
 965     bad type in switch expression\n\
 966     {0}
 967 
 968 # 0: message segment
 969 compiler.misc.incompatible.ret.type.in.lambda=\
 970     bad return type in lambda expression\n\
 971     {0}
 972 
 973 compiler.misc.stat.expr.expected=\
 974     lambda body is not compatible with a void functional interface\n\
 975     (consider using a block lambda body, or use a statement expression instead)
 976 
 977 # 0: message segment
 978 compiler.misc.incompatible.ret.type.in.mref=\
 979     bad return type in method reference\n\
 980     {0}
 981 
 982 compiler.err.lambda.body.neither.value.nor.void.compatible=\
 983     lambda body is neither value nor void compatible
 984 
 985 # 0: list of type
 986 compiler.err.incompatible.thrown.types.in.mref=\
 987     incompatible thrown types {0} in functional expression
 988 
 989 compiler.misc.incompatible.arg.types.in.lambda=\
 990     incompatible parameter types in lambda expression
 991 
 992 compiler.misc.incompatible.arg.types.in.mref=\
 993     incompatible parameter types in method reference
 994 
 995 compiler.err.new.not.allowed.in.annotation=\
 996     ''new'' not allowed in an annotation
 997 
 998 # 0: name, 1: type
 999 compiler.err.no.annotation.member=\
1000     no annotation member {0} in {1}
1001 
1002 # 0: symbol
1003 compiler.err.no.encl.instance.of.type.in.scope=\
1004     no enclosing instance of type {0} is in scope
1005 
1006 compiler.err.no.intf.expected.here=\
1007     no interface expected here
1008 
1009 compiler.err.no.match.entry=\
1010     {0} has no match in entry in {1}; required {2}
1011 
1012 # 0: type
1013 compiler.err.not.annotation.type=\
1014     {0} is not an annotation interface
1015 
1016 # 0: symbol, 1: symbol, 2: message segment
1017 compiler.err.not.def.access.package.cant.access=\
1018     {0} is not visible\n\
1019     ({2})
1020 
1021 # 0: symbol, 1: symbol, 2: message segment
1022 compiler.misc.not.def.access.package.cant.access=\
1023     {0} is not visible\n\
1024     ({2})
1025 
1026 # 0: symbol, 1: message segment
1027 compiler.err.package.not.visible=\
1028     package {0} is not visible\n\
1029     ({1})
1030 
1031 # 0: symbol, 1: message segment
1032 compiler.misc.package.not.visible=\
1033     package {0} is not visible\n\
1034     ({1})
1035 
1036 # {0} - current module
1037 # {1} - package in which the invisible class is declared
1038 # {2} - module in which {1} is declared
1039 # 0: symbol, 1: symbol, 2: symbol
1040 compiler.misc.not.def.access.does.not.read=\
1041     package {1} is declared in module {2}, but module {0} does not read it
1042 
1043 # {0} - package in which the invisible class is declared
1044 # {1} - module in which {0} is declared
1045 # 0: symbol, 1: symbol
1046 compiler.misc.not.def.access.does.not.read.from.unnamed=\
1047     package {0} is declared in module {1}, which is not in the module graph
1048 
1049 # {0} - package in which the invisible class is declared
1050 # {1} - current module
1051 # 0: symbol, 1: symbol
1052 compiler.misc.not.def.access.does.not.read.unnamed=\
1053     package {0} is declared in the unnamed module, but module {1} does not read it
1054 
1055 # {0} - package in which the invisible class is declared
1056 # {1} - module in which {0} is declared
1057 # 0: symbol, 1: symbol
1058 compiler.misc.not.def.access.not.exported=\
1059     package {0} is declared in module {1}, which does not export it
1060 
1061 # {0} - package in which the invisible class is declared
1062 # {1} - module in which {0} is declared
1063 # 0: symbol, 1: symbol
1064 compiler.misc.not.def.access.not.exported.from.unnamed=\
1065     package {0} is declared in module {1}, which does not export it
1066 
1067 # {0} - package in which the invisible class is declared
1068 # {1} - module in which {0} is declared
1069 # {2} - current module
1070 # 0: symbol, 1: symbol, 2: symbol
1071 compiler.misc.not.def.access.not.exported.to.module=\
1072     package {0} is declared in module {1}, which does not export it to module {2}
1073 
1074 # {0} - package in which the invisible class is declared
1075 # {1} - module in which {0} is declared
1076 # 0: symbol, 1: symbol
1077 compiler.misc.not.def.access.not.exported.to.module.from.unnamed=\
1078     package {0} is declared in module {1}, which does not export it to the unnamed module
1079 
1080 # 0: symbol, 1: symbol
1081 compiler.err.not.def.access.class.intf.cant.access=\
1082     {1}.{0} is defined in an inaccessible class or interface
1083 
1084 # 0: symbol, 1: symbol
1085 compiler.misc.not.def.access.class.intf.cant.access=\
1086     {1}.{0} is defined in an inaccessible class or interface
1087 
1088 # 0: symbol, 1: symbol, 2: symbol, 3: message segment
1089 compiler.err.not.def.access.class.intf.cant.access.reason=\
1090     {1}.{0} in package {2} is not accessible\n\
1091     ({3})
1092 
1093 # 0: symbol, 1: symbol, 2: symbol, 3: message segment
1094 compiler.misc.not.def.access.class.intf.cant.access.reason=\
1095     {1}.{0} in package {2} is not accessible\n\
1096     ({3})
1097 
1098 # 0: symbol, 1: list of type, 2: type
1099 compiler.misc.cant.access.inner.cls.constr=\
1100     cannot access constructor {0}({1})\n\
1101     an enclosing instance of type {2} is not in scope
1102 
1103 # 0: symbol, 1: symbol
1104 compiler.err.not.def.public.cant.access=\
1105     {0} is not public in {1}; cannot be accessed from outside package
1106 
1107 # 0: symbol, 1: symbol
1108 compiler.err.not.def.public=\
1109     {0} is not public in {1}
1110 
1111 # 0: symbol, 1: symbol
1112 compiler.misc.not.def.public.cant.access=\
1113     {0} is not public in {1}; cannot be accessed from outside package
1114 
1115 # 0: name
1116 compiler.err.not.loop.label=\
1117     not a loop label: {0}
1118 
1119 compiler.err.not.stmt=\
1120     not a statement
1121 
1122 # 0: symbol
1123 compiler.err.not.encl.class=\
1124     not an enclosing class: {0}
1125 
1126 # 0: name, 1: type
1127 compiler.err.operator.cant.be.applied=\
1128     bad operand type {1} for unary operator ''{0}''
1129 
1130 # 0: name, 1: type, 2: type
1131 compiler.err.operator.cant.be.applied.1=\
1132     bad operand types for binary operator ''{0}''\n\
1133     first type:  {1}\n\
1134     second type: {2}
1135 
1136 compiler.err.pkg.annotations.sb.in.package-info.java=\
1137     package annotations should be in file package-info.java
1138 
1139 compiler.err.no.pkg.in.module-info.java=\
1140     package declarations not allowed in file module-info.java
1141 
1142 # 0: symbol
1143 compiler.err.pkg.clashes.with.class.of.same.name=\
1144     package {0} clashes with class of same name
1145 
1146 compiler.err.warnings.and.werror=\
1147     warnings found and -Werror specified
1148 
1149 # Errors related to annotation processing
1150 
1151 # 0: symbol, 1: message segment, 2: string (stack-trace)
1152 compiler.err.proc.cant.access=\
1153     cannot access {0}\n\
1154     {1}\n\
1155     Consult the following stack trace for details.\n\
1156     {2}
1157 
1158 # 0: symbol, 1: message segment
1159 compiler.err.proc.cant.access.1=\
1160     cannot access {0}\n\
1161     {1}
1162 
1163 # 0: string
1164 compiler.err.proc.cant.find.class=\
1165     Could not find class file for ''{0}''.
1166 
1167 # 0: string
1168 compiler.err.proc.cant.load.class=\
1169     Could not load processor class file due to ''{0}''.
1170 
1171 # Print a client-generated error message; assumed to be localized, no translation required
1172 # 0: string
1173 compiler.err.proc.messager=\
1174     {0}
1175 
1176 # 0: string
1177 compiler.misc.exception.message=\
1178     {0}
1179 
1180 compiler.misc.user.selected.completion.failure=\
1181     user-selected completion failure by class name
1182 
1183 # 0: collection of string
1184 compiler.err.proc.no.explicit.annotation.processing.requested=\
1185     Class names, ''{0}'', are only accepted if annotation processing is explicitly requested
1186 
1187 compiler.err.proc.no.service=\
1188     A ServiceLoader was not usable and is required for annotation processing.
1189 
1190 # 0: string, 1: string
1191 compiler.err.proc.processor.bad.option.name=\
1192     Bad option name ''{0}'' provided by processor ''{1}''
1193 
1194 # 0: string
1195 compiler.err.proc.processor.cant.instantiate=\
1196     Could not instantiate an instance of processor ''{0}''
1197 
1198 # 0: string
1199 compiler.err.proc.processor.not.found=\
1200     Annotation processor ''{0}'' not found
1201 
1202 # 0: string
1203 compiler.err.proc.processor.wrong.type=\
1204     Annotation processor ''{0}'' does not implement javax.annotation.processing.Processor
1205 
1206 compiler.err.proc.service.problem=\
1207     Error creating a service loader to load Processors.
1208 
1209 # 0: string
1210 compiler.err.proc.bad.config.file=\
1211     Bad service configuration file, or exception thrown while constructing Processor object: {0}
1212 
1213 compiler.err.proc.cant.create.loader=\
1214     Could not create class loader for annotation processors: {0}
1215 
1216 # 0: symbol
1217 compiler.err.qualified.new.of.static.class=\
1218     qualified new of static class
1219 
1220 compiler.err.recursive.ctor.invocation=\
1221     recursive constructor invocation
1222 
1223 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
1224 compiler.err.ref.ambiguous=\
1225     reference to {0} is ambiguous\n\
1226     both {1} {2} in {3} and {4} {5} in {6} match
1227 
1228 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
1229 compiler.misc.ref.ambiguous=\
1230     reference to {0} is ambiguous\n\
1231     both {1} {2} in {3} and {4} {5} in {6} match
1232 
1233 compiler.err.repeated.annotation.target=\
1234     repeated annotation target
1235 
1236 compiler.err.repeated.interface=\
1237     repeated interface
1238 
1239 compiler.err.repeated.modifier=\
1240     repeated modifier
1241 
1242 # 0: symbol, 1: set of modifier, 2: symbol
1243 compiler.err.report.access=\
1244     {0} has {1} access in {2}
1245 
1246 # 0: symbol, 1: set of modifier, 2: symbol
1247 compiler.misc.report.access=\
1248     {0} has {1} access in {2}
1249 
1250 compiler.err.ret.outside.meth=\
1251     return outside method
1252 
1253 compiler.err.signature.doesnt.match.supertype=\
1254     signature does not match {0}; incompatible supertype
1255 
1256 compiler.err.signature.doesnt.match.intf=\
1257     signature does not match {0}; incompatible interfaces
1258 
1259 # 0: symbol, 1: symbol, 2: symbol
1260 compiler.err.does.not.override.abstract=\
1261     {0} is not abstract and does not override abstract method {1} in {2}
1262 
1263 # 0: file object
1264 compiler.err.source.cant.overwrite.input.file=\
1265     error writing source; cannot overwrite input file {0}
1266 
1267 # 0: symbol
1268 compiler.err.stack.sim.error=\
1269     Internal error: stack sim error on {0}
1270 
1271 compiler.err.static.imp.only.classes.and.interfaces=\
1272     static import only from classes and interfaces
1273 
1274 compiler.err.string.const.req=\
1275     constant string expression required
1276 
1277 compiler.err.pattern.expected=\
1278     type pattern expected
1279 
1280 # 0: symbol, 1: fragment
1281 compiler.err.cannot.generate.class=\
1282     error while generating class {0}\n\
1283     ({1})
1284 
1285 # 0: symbol, 1: symbol
1286 compiler.misc.synthetic.name.conflict=\
1287     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
1288 
1289 # 0: symbol, 1: type
1290 compiler.misc.illegal.signature=\
1291     illegal signature attribute for type {1}
1292 
1293 compiler.err.throws.not.allowed.in.intf.annotation=\
1294     throws clause not allowed in @interface members
1295 
1296 compiler.err.try.without.catch.finally.or.resource.decls=\
1297     ''try'' without ''catch'', ''finally'' or resource declarations
1298 
1299 # 0: symbol
1300 compiler.err.type.doesnt.take.params=\
1301     type {0} does not take parameters
1302 
1303 compiler.err.type.var.cant.be.deref=\
1304     cannot select from a type variable
1305 
1306 compiler.err.type.var.may.not.be.followed.by.other.bounds=\
1307     a type variable may not be followed by other bounds
1308 
1309 compiler.err.type.var.more.than.once=\
1310     type variable {0} occurs more than once in result type of {1}; cannot be left uninstantiated
1311 
1312 compiler.err.type.var.more.than.once.in.result=\
1313     type variable {0} occurs more than once in type of {1}; cannot be left uninstantiated
1314 
1315 # 0: type, 1: type, 2: fragment
1316 compiler.err.types.incompatible=\
1317     types {0} and {1} are incompatible;\n\
1318     {2}
1319 
1320 # 0: name, 1: list of type
1321 compiler.misc.incompatible.diff.ret=\
1322     both define {0}({1}), but with unrelated return types
1323 
1324 # 0: type, 1: name, 2: list of type
1325 compiler.err.incompatible.diff.ret.same.type=\
1326     type {0} defines {1}({2}) more than once with unrelated return types
1327 
1328 # 0: kind name, 1: type, 2: name, 3: list of type, 4: symbol, 5: symbol
1329 compiler.misc.incompatible.unrelated.defaults=\
1330     {0} {1} inherits unrelated defaults for {2}({3}) from types {4} and {5}
1331 
1332 # 0: kind name, 1: type, 2: name, 3: list of type, 4: symbol, 5: symbol
1333 compiler.misc.incompatible.abstract.default=\
1334     {0} {1} inherits abstract and default for {2}({3}) from types {4} and {5}
1335 
1336 # 0: name, 1: kind name, 2: symbol
1337 compiler.err.default.overrides.object.member=\
1338     default method {0} in {1} {2} overrides a member of java.lang.Object
1339 
1340 # 0: type
1341 compiler.err.illegal.static.intf.meth.call=\
1342     illegal static interface method call\n\
1343     the receiver expression should be replaced with the type qualifier ''{0}''
1344 
1345 # 0: symbol or type, 1: message segment
1346 compiler.err.illegal.default.super.call=\
1347     bad type qualifier {0} in default super call\n\
1348     {1}
1349 
1350 # 0: symbol, 1: type
1351 compiler.misc.overridden.default=\
1352     method {0} is overridden in {1}
1353 
1354 # 0: symbol, 1: type or symbol
1355 compiler.misc.redundant.supertype=\
1356     redundant interface {0} is extended by {1}
1357 
1358 compiler.err.unclosed.char.lit=\
1359     unclosed character literal
1360 
1361 compiler.err.unclosed.comment=\
1362     unclosed comment
1363 
1364 compiler.err.unclosed.str.lit=\
1365     unclosed string literal
1366 
1367 compiler.err.unclosed.text.block=\
1368     unclosed text block
1369 
1370 # 0: string
1371 compiler.err.unsupported.encoding=\
1372     unsupported encoding: {0}
1373 
1374 compiler.err.io.exception=\
1375     error reading source file: {0}
1376 
1377 # 0: name
1378 compiler.err.undef.label=\
1379     undefined label: {0}
1380 
1381 # 0: name
1382 compiler.err.illegal.ref.to.restricted.type=\
1383     illegal reference to restricted type ''{0}''
1384 
1385 # 0: name
1386 compiler.warn.illegal.ref.to.restricted.type=\
1387     illegal reference to restricted type ''{0}''
1388 
1389 # 0: name, 1: source
1390 compiler.err.restricted.type.not.allowed=\
1391     ''{0}'' not allowed here\n\
1392     as of release {1}, ''{0}'' is a restricted type name and cannot be used for type declarations
1393 
1394 # 0: name, 1: source
1395 compiler.warn.restricted.type.not.allowed=\
1396     as of release {1}, ''{0}'' is a restricted type name and cannot be used for type declarations or as the element type of an array
1397 
1398 # 0: name, 1: source
1399 compiler.warn.restricted.type.not.allowed.preview=\
1400     ''{0}'' may become a restricted type name in a future release and may be unusable for type declarations or as the element type of an array
1401 
1402 # 0: name (variable), 1: message segment
1403 compiler.err.cant.infer.local.var.type=\
1404     cannot infer type for local variable {0}\n\
1405     ({1})
1406 
1407 # 0: name
1408 compiler.err.restricted.type.not.allowed.here=\
1409     ''{0}'' is not allowed here
1410 
1411 # 0: name
1412 compiler.err.restricted.type.not.allowed.array=\
1413     ''{0}'' is not allowed as an element type of an array
1414 
1415 # 0: name
1416 compiler.err.restricted.type.not.allowed.compound=\
1417     ''{0}'' is not allowed in a compound declaration
1418 
1419 # 0: fragment
1420 compiler.err.invalid.lambda.parameter.declaration=\
1421     invalid lambda parameter declaration\n\
1422     ({0})
1423 
1424 compiler.misc.implicit.and.explicit.not.allowed=\
1425     cannot mix implicitly-typed and explicitly-typed parameters
1426 
1427 compiler.misc.var.and.explicit.not.allowed=\
1428     cannot mix ''var'' and explicitly-typed parameters
1429 
1430 compiler.misc.var.and.implicit.not.allowed=\
1431     cannot mix ''var'' and implicitly-typed parameters
1432 
1433 compiler.misc.local.cant.infer.null=\
1434     variable initializer is ''null''
1435 
1436 compiler.misc.local.cant.infer.void=\
1437     variable initializer is ''void''
1438 
1439 compiler.misc.local.missing.init=\
1440     cannot use ''var'' on variable without initializer
1441 
1442 compiler.misc.local.lambda.missing.target=\
1443     lambda expression needs an explicit target-type
1444 
1445 compiler.misc.local.mref.missing.target=\
1446     method reference needs an explicit target-type
1447 
1448 compiler.misc.local.array.missing.target=\
1449     array initializer needs an explicit target-type
1450 
1451 compiler.misc.local.self.ref=\
1452     cannot use ''var'' on self-referencing variable
1453 
1454 # 0: message segment, 1: unused
1455 compiler.err.cant.apply.diamond=\
1456     cannot infer type arguments for {0}
1457 
1458 # 0: message segment or type, 1: message segment
1459 compiler.err.cant.apply.diamond.1=\
1460     cannot infer type arguments for {0}\n\
1461     reason: {1}
1462 
1463 # 0: message segment or type, 1: message segment
1464 compiler.misc.cant.apply.diamond.1=\
1465     cannot infer type arguments for {0}\n\
1466     reason: {1}
1467 
1468 compiler.err.unreachable.stmt=\
1469     unreachable statement
1470 
1471 compiler.err.not.exhaustive=\
1472     the switch expression does not cover all possible input values
1473 
1474 compiler.err.not.exhaustive.statement=\
1475     the switch statement does not cover all possible input values
1476 
1477 compiler.err.initializer.must.be.able.to.complete.normally=\
1478     initializer must be able to complete normally
1479 
1480 compiler.err.initializer.not.allowed=\
1481     initializers not allowed in interfaces
1482 
1483 # 0: type
1484 compiler.err.unreported.exception.need.to.catch.or.throw=\
1485     unreported exception {0}; must be caught or declared to be thrown
1486 
1487 # 0: type
1488 compiler.err.unreported.exception.default.constructor=\
1489     unreported exception {0} in default constructor
1490 
1491 # 0: type, 1: name
1492 compiler.err.unreported.exception.implicit.close=\
1493     unreported exception {0}; must be caught or declared to be thrown\n\
1494     exception thrown from implicit call to close() on resource variable ''{1}''
1495 
1496 compiler.err.void.not.allowed.here=\
1497     ''void'' type not allowed here
1498 
1499 # 0: string
1500 compiler.err.wrong.number.type.args=\
1501     wrong number of type arguments; required {0}
1502 
1503 # 0: symbol
1504 compiler.err.var.might.already.be.assigned=\
1505     variable {0} might already have been assigned
1506 
1507 # 0: symbol
1508 compiler.err.var.might.not.have.been.initialized=\
1509     variable {0} might not have been initialized
1510 
1511 # 0: symbol
1512 compiler.err.var.not.initialized.in.default.constructor=\
1513     variable {0} not initialized in the default constructor
1514 
1515 # 0: symbol
1516 compiler.err.var.might.be.assigned.in.loop=\
1517     variable {0} might be assigned in loop
1518 
1519 # 0: symbol, 1: message segment
1520 compiler.err.varargs.invalid.trustme.anno=\
1521     Invalid {0} annotation. {1}
1522 
1523 # 0: type
1524 compiler.misc.varargs.trustme.on.reifiable.varargs=\
1525     Varargs element type {0} is reifiable.
1526 
1527 # 0: type, 1: type
1528 compiler.err.instanceof.reifiable.not.safe=\
1529     {0} cannot be safely cast to {1}
1530 
1531 # 0: symbol
1532 compiler.misc.varargs.trustme.on.non.varargs.meth=\
1533     Method {0} is not a varargs method.
1534 
1535 # 0: symbol
1536 compiler.misc.varargs.trustme.on.non.varargs.accessor=\
1537     Accessor {0} is not a varargs method.
1538 
1539 # 0: symbol
1540 compiler.misc.varargs.trustme.on.virtual.varargs=\
1541     Instance method {0} is neither final nor private.
1542 
1543 # 0: symbol
1544 compiler.misc.varargs.trustme.on.virtual.varargs.final.only=\
1545     Instance method {0} is not final.
1546 
1547 # 0: type, 1: symbol kind, 2: symbol
1548 compiler.misc.inaccessible.varargs.type=\
1549     formal varargs element type {0} is not accessible from {1} {2}
1550 
1551 # In the following string, {1} will always be the detail message from
1552 # java.io.IOException.
1553 # 0: symbol, 1: string
1554 compiler.err.class.cant.write=\
1555     error while writing {0}: {1}
1556 
1557 # In the following string, {0} is the name of the class in the Java source.
1558 # It really should be used two times..
1559 # 0: kind name, 1: name
1560 compiler.err.class.public.should.be.in.file=\
1561     {0} {1} is public, should be declared in a file named {1}.java
1562 
1563 ## All errors which do not refer to a particular line in the source code are
1564 ## preceded by this string.
1565 compiler.err.error=\
1566     error:\u0020
1567 
1568 # The following error messages do not refer to a line in the source code.
1569 compiler.err.cant.read.file=\
1570     cannot read: {0}
1571 
1572 # 0: string
1573 compiler.err.plugin.not.found=\
1574     plug-in not found: {0}
1575 
1576 # 0: path
1577 compiler.warn.locn.unknown.file.on.module.path=\
1578     unknown file on module path: {0}
1579 
1580 
1581 # 0: path
1582 compiler.err.locn.bad.module-info=\
1583     problem reading module-info.class in {0}
1584 
1585 # 0: path
1586 compiler.err.locn.cant.read.directory=\
1587     cannot read directory {0}
1588 
1589 # 0: path
1590 compiler.err.locn.cant.read.file=\
1591     cannot read file {0}
1592 
1593 # 0: path
1594 compiler.err.locn.cant.get.module.name.for.jar=\
1595     cannot determine module name for {0}
1596 
1597 # 0: path
1598 compiler.err.multi-module.outdir.cannot.be.exploded.module=\
1599     in multi-module mode, the output directory cannot be an exploded module: {0}
1600 
1601 # 0: path
1602 compiler.warn.outdir.is.in.exploded.module=\
1603     the output directory is within an exploded module: {0}
1604 
1605 # 0: file object
1606 compiler.err.locn.module-info.not.allowed.on.patch.path=\
1607     module-info.class not allowed on patch path: {0}
1608 
1609 # 0: string
1610 compiler.err.locn.invalid.arg.for.xpatch=\
1611     invalid argument for --patch-module option: {0}
1612 
1613 compiler.err.file.sb.on.source.or.patch.path.for.module=\
1614     file should be on source path, or on patch path for module
1615 
1616 compiler.err.no.java.lang=\
1617     Unable to find package java.lang in platform classes
1618 
1619 compiler.err.statement.not.expected=\
1620     statements not expected outside of methods and initializers
1621 
1622 compiler.err.class.method.or.field.expected=\
1623     class, interface, annotation type, enum, record, method or field expected
1624 
1625 #####
1626 
1627 # Fatal Errors
1628 
1629 # 0: name
1630 compiler.misc.fatal.err.cant.locate.meth=\
1631     Fatal Error: Unable to find method {0}
1632 
1633 # 0: name
1634 compiler.misc.fatal.err.cant.locate.field=\
1635     Fatal Error: Unable to find field {0}
1636 
1637 # 0: type
1638 compiler.misc.fatal.err.cant.locate.ctor=\
1639     Fatal Error: Unable to find constructor for {0}
1640 
1641 compiler.misc.fatal.err.cant.close=\
1642     Fatal Error: Cannot close compiler resources
1643 
1644 #####
1645 
1646 ##
1647 ## miscellaneous strings
1648 ##
1649 
1650 compiler.misc.diamond.anonymous.methods.implicitly.override=\
1651     (due to <>, every non-private method declared in this anonymous class must override or implement a method from a supertype)
1652 
1653 compiler.misc.source.unavailable=\
1654     (source unavailable)
1655 
1656 # 0: string, 1: string, 2: boolean
1657 compiler.misc.x.print.processor.info=\
1658     Processor {0} matches {1} and returns {2}.
1659 
1660 # 0: number, 1: string, 2: set of symbol, 3: boolean
1661 compiler.misc.x.print.rounds=\
1662     Round {0}:\n\tinput files: {1}\n\tannotations: {2}\n\tlast round: {3}
1663 
1664 # 0: file name
1665 compiler.warn.file.from.future=\
1666     Modification date is in the future for file {0}
1667 
1668 # 0: path
1669 compiler.warn.output.file.clash=\
1670     output file written more than once: {0}
1671 
1672 #####
1673 
1674 ## The following string will appear before all messages keyed as:
1675 ## "compiler.note".
1676 
1677 compiler.note.compressed.diags=\
1678     Some messages have been simplified; recompile with -Xdiags:verbose to get full output
1679 
1680 # 0: boolean, 1: symbol
1681 compiler.note.lambda.stat=\
1682     Translating lambda expression\n\
1683     alternate metafactory = {0}\n\
1684     synthetic method = {1}
1685 
1686 # 0: boolean, 1: unused
1687 compiler.note.mref.stat=\
1688     Translating method reference\n\
1689     alternate metafactory = {0}\n\
1690 
1691 # 0: boolean, 1: symbol
1692 compiler.note.mref.stat.1=\
1693     Translating method reference\n\
1694     alternate metafactory = {0}\n\
1695     bridge method = {1}
1696 
1697 compiler.note.note=\
1698     Note:\u0020
1699 
1700 # 0: file name
1701 compiler.note.deprecated.filename=\
1702     {0} uses or overrides a deprecated API.
1703 
1704 compiler.note.deprecated.plural=\
1705     Some input files use or override a deprecated API.
1706 
1707 # The following string may appear after one of the above deprecation
1708 # messages.
1709 compiler.note.deprecated.recompile=\
1710     Recompile with -Xlint:deprecation for details.
1711 
1712 # 0: file name
1713 compiler.note.deprecated.filename.additional=\
1714     {0} has additional uses or overrides of a deprecated API.
1715 
1716 compiler.note.deprecated.plural.additional=\
1717     Some input files additionally use or override a deprecated API.
1718 
1719 # 0: file name
1720 compiler.note.removal.filename=\
1721     {0} uses or overrides a deprecated API that is marked for removal.
1722 
1723 compiler.note.removal.plural=\
1724     Some input files use or override a deprecated API that is marked for removal.
1725 
1726 # The following string may appear after one of the above removal messages.
1727 compiler.note.removal.recompile=\
1728     Recompile with -Xlint:removal for details.
1729 
1730 # 0: file name
1731 compiler.note.removal.filename.additional=\
1732     {0} has additional uses or overrides of a deprecated API that is marked for removal.
1733 
1734 compiler.note.removal.plural.additional=\
1735     Some input files additionally use or override a deprecated API that is marked for removal.
1736 
1737 # 0: file name
1738 compiler.note.unchecked.filename=\
1739     {0} uses unchecked or unsafe operations.
1740 
1741 compiler.note.unchecked.plural=\
1742     Some input files use unchecked or unsafe operations.
1743 
1744 # The following string may appear after one of the above unchecked messages.
1745 compiler.note.unchecked.recompile=\
1746     Recompile with -Xlint:unchecked for details.
1747 
1748 # 0: file name
1749 compiler.note.unchecked.filename.additional=\
1750     {0} has additional unchecked or unsafe operations.
1751 
1752 compiler.note.unchecked.plural.additional=\
1753     Some input files additionally use unchecked or unsafe operations.
1754 
1755 # 0: file name, 1: source
1756 compiler.note.preview.filename=\
1757     {0} uses preview features of Java SE {1}.
1758 
1759 # 0: source
1760 compiler.note.preview.plural=\
1761     Some input files use preview features of Java SE {0}.
1762 
1763 # The following string may appear after one of the above deprecation
1764 # messages.
1765 compiler.note.preview.recompile=\
1766     Recompile with -Xlint:preview for details.
1767 
1768 # 0: file name, 1: source
1769 compiler.note.preview.filename.additional=\
1770     {0} has additional uses of preview features of Java SE {1}.
1771 
1772 # 0: source
1773 compiler.note.preview.plural.additional=\
1774     Some input files additionally use preview features of Java SE {0}.
1775 
1776 # Notes related to annotation processing
1777 
1778 # Print a client-generated note; assumed to be localized, no translation required
1779 # 0: string
1780 compiler.note.proc.messager=\
1781     {0}
1782 
1783 # 0: string, 1: string, 2: string
1784 compiler.note.multiple.elements=\
1785     Multiple elements named ''{1}'' in modules ''{2}'' were found by javax.lang.model.util.Elements.{0}.
1786 
1787 compiler.note.implicit.annotation.processing=\
1788     Annotation processing is enabled because one or more processors were found\n\
1789     on the class path. A future release of javac may disable annotation processing\n\
1790     unless at least one processor is specified by name (-processor), or a search\n\
1791     path is specified (--processor-path, --processor-module-path), or annotation\n\
1792     processing is enabled explicitly (-proc:only, -proc:full).\n\
1793     Use -Xlint:-options to suppress this message.\n\
1794     Use -proc:none to disable annotation processing.
1795 
1796 #####
1797 
1798 # 0: number
1799 compiler.misc.count.error=\
1800     {0} error
1801 
1802 # 0: number
1803 compiler.misc.count.error.plural=\
1804     {0} errors
1805 
1806 # 0: number, 1: number
1807 compiler.misc.count.error.recompile=\
1808     only showing the first {0} errors, of {1} total; use -Xmaxerrs if you would like to see more
1809 
1810 # 0: number, 1: number
1811 compiler.misc.count.warn.recompile=\
1812     only showing the first {0} warnings, of {1} total; use -Xmaxwarns if you would like to see more
1813 
1814 # 0: number
1815 compiler.misc.count.warn=\
1816     {0} warning
1817 
1818 # 0: number
1819 compiler.misc.count.warn.plural=\
1820     {0} warnings
1821 
1822 compiler.misc.version.not.available=\
1823     (version info not available)
1824 
1825 ## extra output when using -verbose (JavaCompiler)
1826 
1827 # 0: symbol
1828 compiler.misc.verbose.checking.attribution=\
1829     [checking {0}]
1830 
1831 # 0: string
1832 compiler.misc.verbose.parsing.done=\
1833     [parsing completed {0}ms]
1834 
1835 # 0: file name
1836 compiler.misc.verbose.parsing.started=\
1837     [parsing started {0}]
1838 
1839 # 0: string
1840 compiler.misc.verbose.total=\
1841     [total {0}ms]
1842 
1843 # 0: file name
1844 compiler.misc.verbose.wrote.file=\
1845     [wrote {0}]
1846 
1847 ## extra output when using -verbose (code/ClassReader)
1848 # 0: string
1849 compiler.misc.verbose.loading=\
1850     [loading {0}]
1851 
1852 # 0: string
1853 compiler.misc.verbose.sourcepath=\
1854     [search path for source files: {0}]
1855 
1856 # 0: string
1857 compiler.misc.verbose.classpath=\
1858     [search path for class files: {0}]
1859 
1860 ## extra output when using -prompt (util/Log)
1861 compiler.misc.resume.abort=\
1862     R)esume, A)bort>
1863 
1864 #####
1865 
1866 ##
1867 ## warnings
1868 ##
1869 
1870 ## All warning messages are preceded by the following string.
1871 compiler.warn.warning=\
1872     warning:\u0020
1873 
1874 ## Warning messages may also include the following prefix to identify a
1875 ## lint option
1876 # 0: option name
1877 compiler.warn.lintOption=\
1878     [{0}]\u0020
1879 
1880 # 0: symbol
1881 compiler.warn.constant.SVUID=\
1882     serialVersionUID must be constant in class {0}
1883 
1884 compiler.warn.dangling.doc.comment=\
1885     documentation comment is not attached to any declaration
1886 
1887 # 0: path
1888 compiler.warn.dir.path.element.not.found=\
1889     bad path element "{0}": no such directory
1890 
1891 # 0: file name
1892 compiler.warn.dir.path.element.not.directory=\
1893     bad path element "{0}": not a directory
1894 
1895 # 0: symbol, 1: symbol, 2: symbol
1896 compiler.warn.missing-explicit-ctor=\
1897     class {0} in exported package {1} declares no explicit constructors, thereby exposing a default constructor to clients of module {2}
1898 
1899 compiler.warn.strictfp=\
1900     as of release 17, all floating-point expressions are evaluated strictly and ''strictfp'' is not required
1901 
1902 compiler.warn.finally.cannot.complete=\
1903     finally clause cannot complete normally
1904 
1905 # 0: name
1906 compiler.warn.poor.choice.for.module.name=\
1907     module name component {0} should avoid terminal digits
1908 
1909 # 0: string
1910 compiler.warn.incubating.modules=\
1911     using incubating module(s): {0}
1912 
1913 # 0: symbol, 1: symbol
1914 compiler.warn.has.been.deprecated=\
1915     {0} in {1} has been deprecated
1916 
1917 # 0: symbol, 1: symbol
1918 compiler.warn.has.been.deprecated.for.removal=\
1919     {0} in {1} has been deprecated and marked for removal
1920 
1921 # 0: symbol
1922 compiler.warn.is.preview=\
1923     {0} is a preview API and may be removed in a future release.
1924 
1925 # 0: symbol
1926 compiler.err.is.preview=\
1927     {0} is a preview API and is disabled by default.\n\
1928     (use --enable-preview to enable preview APIs)
1929 
1930 # 0: symbol
1931 compiler.warn.is.preview.reflective=\
1932     {0} is a reflective preview API and may be removed in a future release.
1933 
1934 # 0: symbol, 1: symbol
1935 compiler.warn.restricted.method=\
1936     {0}.{1} is a restricted method.\n\
1937     (Restricted methods are unsafe and, if used incorrectly, might crash the Java runtime or corrupt memory)
1938 
1939 # 0: symbol
1940 compiler.warn.has.been.deprecated.module=\
1941     module {0} has been deprecated
1942 
1943 # 0: symbol
1944 compiler.warn.has.been.deprecated.for.removal.module=\
1945     module {0} has been deprecated and marked for removal
1946 
1947 # 0: symbol
1948 compiler.warn.sun.proprietary=\
1949     {0} is internal proprietary API and may be removed in a future release
1950 
1951 compiler.warn.illegal.char.for.encoding=\
1952     unmappable character for encoding {0}
1953 
1954 # 0: symbol
1955 compiler.warn.improper.SVUID=\
1956     serialVersionUID must be declared static final in class {0}
1957 
1958 compiler.warn.improper.SPF=\
1959     serialPersistentFields must be declared private static final to be effective
1960 
1961 compiler.warn.SPF.null.init=\
1962     serialPersistentFields ineffective if initialized to null.\n\
1963     Initialize to an empty array to indicate no fields
1964 
1965 
1966 # 0: type, 1: type
1967 compiler.warn.inexact.non-varargs.call=\
1968     non-varargs call of varargs method with inexact argument type for last parameter;\n\
1969     cast to {0} for a varargs call\n\
1970     cast to {1} for a non-varargs call and to suppress this warning
1971 
1972 # 0: list of type
1973 compiler.warn.unreachable.catch=\
1974     unreachable catch clause\n\
1975     thrown type {0} has already been caught
1976 
1977 # 0: list of type
1978 compiler.warn.unreachable.catch.1=\
1979     unreachable catch clause\n\
1980     thrown types {0} have already been caught
1981 
1982 # 0: symbol
1983 compiler.warn.long.SVUID=\
1984     serialVersionUID must be of type long in class {0}
1985 
1986 compiler.warn.OSF.array.SPF=\
1987     serialPersistentFields must be of type java.io.ObjectStreamField[] to be effective
1988 
1989 # 0: symbol
1990 compiler.warn.missing.SVUID=\
1991     serializable class {0} has no definition of serialVersionUID
1992 
1993 # 0: name
1994 compiler.warn.serializable.missing.access.no.arg.ctor=\
1995     cannot access a no-arg constructor in first non-serializable superclass {0}
1996 
1997 # 0: name
1998 compiler.warn.serial.method.not.private=\
1999     serialization-related method {0} not declared private
2000 
2001 # 0: name
2002 compiler.warn.serial.concrete.instance.method=\
2003     serialization-related method {0} must be a concrete instance method to be effective, neither abstract nor static
2004 
2005 # 0: name
2006 compiler.warn.serial.method.static=\
2007     serialization-related method {0} declared static; must instead be an instance method to be effective
2008 
2009 # 0: name
2010 compiler.warn.serial.method.no.args=\
2011     to be effective serialization-related method {0} must have no parameters
2012 
2013 # 0: name, 1: number
2014 compiler.warn.serial.method.one.arg=\
2015     to be effective serialization-related method {0} must have exactly one parameter rather than {1} parameters
2016 
2017 # 0: name, 1: type, 2: type
2018 compiler.warn.serial.method.parameter.type=\
2019     sole parameter of serialization-related method {0} must have type {1} to be effective rather than type {2}
2020 
2021 # 0: name, 1: type, 2: type
2022 compiler.warn.serial.method.unexpected.return.type=\
2023     serialization-related method {0} declared with a return type of {1} rather than expected type {2}.\n\
2024     As declared, the method will be ineffective for serialization
2025 
2026 # 0: name, 1: type
2027 compiler.warn.serial.method.unexpected.exception=\
2028     serialization-related method {0} declared to throw an unexpected type {1}
2029 
2030 compiler.warn.ineffectual.serial.field.interface=\
2031     serialPersistentFields is not effective in an interface
2032 
2033 # 0: string
2034 compiler.warn.ineffectual.serial.field.enum=\
2035      serialization-related field {0} is not effective in an enum class
2036 
2037 # 0: string
2038 compiler.warn.ineffectual.serial.method.enum=\
2039     serialization-related method {0} is not effective in an enum class
2040 
2041 # 0: string
2042 compiler.warn.ineffectual.extern.method.enum=\
2043     externalization-related method {0} is not effective in an enum class
2044 
2045 compiler.warn.ineffectual.serial.field.record=\
2046     serialPersistentFields is not effective in a record class
2047 
2048 # 0: string
2049 compiler.warn.ineffectual.serial.method.record=\
2050     serialization-related method {0} is not effective in a record class
2051 
2052 # 0: string
2053 compiler.warn.ineffectual.externalizable.method.record=\
2054     externalization-related method {0} is not effective in a record class
2055 
2056 # 0: name
2057 compiler.warn.ineffectual.serial.method.externalizable=\
2058     serialization-related method {0} is not effective in an Externalizable class
2059 
2060 compiler.warn.ineffectual.serial.field.externalizable=\
2061     serialPersistentFields is not effective in an Externalizable class
2062 
2063 compiler.warn.externalizable.missing.public.no.arg.ctor=\
2064     an Externalizable class needs a public no-arg constructor
2065 
2066 compiler.warn.non.serializable.instance.field=\
2067     non-transient instance field of a serializable class declared with a non-serializable type
2068 
2069 # 0: type
2070 compiler.warn.non.serializable.instance.field.array=\
2071     non-transient instance field of a serializable class declared with an array having a non-serializable base component type {0}
2072 
2073 compiler.warn.non.private.method.weaker.access=\
2074     serialization-related method declared non-private in an interface will prevent\n\
2075     classes implementing the interface from declaring the method as private
2076 
2077 compiler.warn.default.ineffective=\
2078     serialization-related default method from an interface will not be run by serialization for an implementing class
2079 
2080 compiler.warn.serializable.value.class.without.write.replace.1=\
2081     serializable value class does not declare, or inherits, a writeReplace method
2082 
2083 compiler.warn.serializable.value.class.without.write.replace.2=\
2084     serializable class does not declare, or inherits, a writeReplace method
2085 
2086 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2087 compiler.warn.potentially.ambiguous.overload=\
2088     {0} in {1} is potentially ambiguous with {2} in {3}
2089 
2090 # 0: message segment
2091 compiler.warn.override.varargs.missing=\
2092     {0}; overridden method has no ''...''
2093 
2094 # 0: message segment
2095 compiler.warn.override.varargs.extra=\
2096     {0}; overriding method is missing ''...''
2097 
2098 # 0: message segment
2099 compiler.warn.override.bridge=\
2100     {0}; overridden method is a bridge method
2101 
2102 # 0: symbol
2103 compiler.warn.pkg-info.already.seen=\
2104     a package-info.java file has already been seen for package {0}
2105 
2106 # 0: path
2107 compiler.warn.path.element.not.found=\
2108     bad path element "{0}": no such file or directory
2109 
2110 compiler.warn.possible.fall-through.into.case=\
2111     possible fall-through into case
2112 
2113 # 0: type
2114 compiler.warn.redundant.cast=\
2115     redundant cast to {0}
2116 
2117 # 0: number
2118 compiler.warn.position.overflow=\
2119     Position encoding overflows at line {0}
2120 
2121 # 0: file name, 1: number, 2: number
2122 compiler.warn.big.major.version=\
2123     {0}: major version {1} is newer than {2}, the highest major version supported by this compiler.\n\
2124     It is recommended that the compiler be upgraded.
2125 
2126 # 0: file name, 1: fragment
2127 compiler.warn.invalid.utf8.in.classfile=\
2128     {0}: classfile contains invalid UTF-8: {1}
2129 
2130 # 0: kind name, 1: symbol
2131 compiler.warn.static.not.qualified.by.type=\
2132     static {0} should be qualified by type name, {1}, instead of by an expression
2133 
2134 # 0: kind name
2135 compiler.warn.static.not.qualified.by.type2=\
2136     static {0} should not be used as a member of an anonymous class
2137 
2138 # 0: string, 1: fragment
2139 compiler.warn.source.no.bootclasspath=\
2140     bootstrap class path is not set in conjunction with -source {0}\n{1}
2141 
2142 # 0: string, 1: fragment
2143 compiler.warn.source.no.system.modules.path=\
2144     location of system modules is not set in conjunction with -source {0}\n{1}
2145 
2146 # 0: string
2147 compiler.misc.source.no.bootclasspath=\
2148   not setting the bootstrap class path may lead to class files that cannot run on JDK {0}\n\
2149   --release {0} is recommended instead of -source {0} because it sets the bootstrap class path automatically
2150 
2151 # 0: string
2152 compiler.misc.source.no.system.modules.path=\
2153   not setting the location of system modules may lead to class files that cannot run on JDK {0}\n\
2154   --release {0} is recommended instead of -source {0} because it sets the location of system modules automatically
2155 
2156 # 0: string, 1: string
2157 compiler.misc.source.no.bootclasspath.with.target=\
2158   not setting the bootstrap class path may lead to class files that cannot run on JDK 8\n\
2159   --release {0} is recommended instead of -source {0} -target {1} because it sets the bootstrap class path automatically
2160 
2161 # 0: string, 1: string
2162 compiler.misc.source.no.system.modules.path.with.target=\
2163   not setting the location of system modules may lead to class files that cannot run on JDK {0}\n\
2164   --release {0} is recommended instead of -source {0} -target {1} because it sets the location of system modules automatically
2165 
2166 # 0: string
2167 compiler.warn.option.obsolete.source=\
2168     source value {0} is obsolete and will be removed in a future release
2169 
2170 # 0: target
2171 compiler.warn.option.obsolete.target=\
2172     target value {0} is obsolete and will be removed in a future release
2173 
2174 # 0: string, 1: string
2175 compiler.err.option.removed.source=\
2176     Source option {0} is no longer supported. Use {1} or later.
2177 
2178 # 0: target, 1: target
2179 compiler.err.option.removed.target=\
2180     Target option {0} is no longer supported. Use {1} or later.
2181 
2182 compiler.warn.option.obsolete.suppression=\
2183     To suppress warnings about obsolete options, use -Xlint:-options.
2184 
2185 # 0: name, 1: number, 2: number, 3: number, 4: number
2186 compiler.warn.future.attr=\
2187     {0} attribute introduced in version {1}.{2} class files is ignored in version {3}.{4} class files
2188 
2189 compiler.warn.requires.automatic=\
2190     requires directive for an automatic module
2191 
2192 compiler.warn.requires.transitive.automatic=\
2193     requires transitive directive for an automatic module
2194 
2195 # Warnings related to annotation processing
2196 # 0: string
2197 compiler.warn.proc.package.does.not.exist=\
2198     package {0} does not exist
2199 
2200 # 0: string
2201 compiler.warn.proc.file.reopening=\
2202     Attempt to create a file for ''{0}'' multiple times
2203 
2204 # 0: string
2205 compiler.warn.proc.type.already.exists=\
2206     A file for type ''{0}'' already exists on the sourcepath or classpath
2207 
2208 # 0: string
2209 compiler.warn.proc.type.recreate=\
2210     Attempt to create a file for type ''{0}'' multiple times
2211 
2212 # 0: string
2213 compiler.warn.proc.illegal.file.name=\
2214     Cannot create file for illegal name ''{0}''.
2215 
2216 # 0: string, 1: string
2217 compiler.warn.proc.suspicious.class.name=\
2218     Creating file for a type whose name ends in {1}: ''{0}''
2219 
2220 # 0: string
2221 compiler.warn.proc.file.create.last.round=\
2222     File for type ''{0}'' created in the last round will not be subject to annotation processing.
2223 
2224 # 0: string, 1: string
2225 compiler.warn.proc.malformed.supported.string=\
2226     Malformed string ''{0}'' for a supported annotation interface returned by processor ''{1}''
2227 
2228 # 0: set of string
2229 compiler.warn.proc.annotations.without.processors=\
2230     No processor claimed any of these annotations: {0}
2231 
2232 # 0: source version, 1: string, 2: string
2233 compiler.warn.proc.processor.incompatible.source.version=\
2234     Supported source version ''{0}'' from annotation processor ''{1}'' less than -source ''{2}''
2235 
2236 # 0: string, 1: string
2237 compiler.warn.proc.duplicate.option.name=\
2238     Duplicate supported option ''{0}'' returned by annotation processor ''{1}''
2239 
2240 # 0: string, 1: string
2241 compiler.warn.proc.duplicate.supported.annotation=\
2242     Duplicate supported annotation interface ''{0}'' returned by annotation processor ''{1}''
2243 
2244 # 0: string
2245 compiler.warn.proc.redundant.types.with.wildcard=\
2246     Annotation processor ''{0}'' redundantly supports both ''*'' and other annotation interfaces
2247 
2248 compiler.warn.proc.proc-only.requested.no.procs=\
2249     Annotation processing without compilation requested but no processors were found.
2250 
2251 compiler.warn.proc.use.implicit=\
2252     Implicitly compiled files were not subject to annotation processing.\n\
2253     Use -implicit to specify a policy for implicit compilation.
2254 
2255 compiler.warn.proc.use.proc.or.implicit=\
2256     Implicitly compiled files were not subject to annotation processing.\n\
2257     Use -proc:none to disable annotation processing or -implicit to specify a policy for implicit compilation.
2258 
2259 # Print a client-generated warning; assumed to be localized, no translation required
2260 # 0: string
2261 compiler.warn.proc.messager=\
2262     {0}
2263 
2264 # 0: set of string
2265 compiler.warn.proc.unclosed.type.files=\
2266     Unclosed files for the types ''{0}''; these types will not undergo annotation processing
2267 
2268 # 0: string
2269 compiler.warn.proc.unmatched.processor.options=\
2270     The following options were not recognized by any processor: ''{0}''
2271 
2272 compiler.warn.try.explicit.close.call=\
2273     explicit call to close() on an auto-closeable resource
2274 
2275 # 0: symbol
2276 compiler.warn.try.resource.not.referenced=\
2277     auto-closeable resource {0} is never referenced in body of corresponding try statement
2278 
2279 # 0: type
2280 compiler.warn.try.resource.throws.interrupted.exc=\
2281     auto-closeable resource {0} has a member method close() that could throw InterruptedException
2282 
2283 compiler.warn.unchecked.assign=\
2284     unchecked assignment: {0} to {1}
2285 
2286 # 0: symbol, 1: type
2287 compiler.warn.unchecked.assign.to.var=\
2288     unchecked assignment to variable {0} as member of raw type {1}
2289 
2290 # 0: symbol, 1: type
2291 compiler.warn.unchecked.call.mbr.of.raw.type=\
2292     unchecked call to {0} as a member of the raw type {1}
2293 
2294 compiler.warn.unchecked.cast.to.type=\
2295     unchecked cast to type {0}
2296 
2297 # 0: kind name, 1: name, 2: object, 3: object, 4: kind name, 5: symbol
2298 compiler.warn.unchecked.meth.invocation.applied=\
2299     unchecked method invocation: {0} {1} in {4} {5} is applied to given types\n\
2300     required: {2}\n\
2301     found:    {3}
2302 
2303 # 0: type
2304 compiler.warn.unchecked.generic.array.creation=\
2305     unchecked generic array creation for varargs parameter of type {0}
2306 
2307 # 0: type
2308 compiler.warn.unchecked.varargs.non.reifiable.type=\
2309     Possible heap pollution from parameterized vararg type {0}
2310 
2311 # 0: symbol
2312 compiler.warn.varargs.unsafe.use.varargs.param=\
2313     Varargs method could cause heap pollution from non-reifiable varargs parameter {0}
2314 
2315 compiler.warn.missing.deprecated.annotation=\
2316     deprecated item is not annotated with @Deprecated
2317 
2318 # 0: kind name
2319 compiler.warn.deprecated.annotation.has.no.effect=\
2320     @Deprecated annotation has no effect on this {0} declaration
2321 
2322 # 0: string
2323 compiler.warn.invalid.path=\
2324     Invalid filename: {0}
2325 
2326 compiler.warn.doclint.not.available=\
2327     No service provider for doclint is available
2328 
2329 # 0: string
2330 compiler.err.invalid.path=\
2331     Invalid filename: {0}
2332 
2333 
2334 # 0: path
2335 compiler.warn.invalid.archive.file=\
2336     Unexpected file on path: {0}
2337 
2338 # 0: path
2339 compiler.warn.unexpected.archive.file=\
2340     Unexpected extension for archive file: {0}
2341 
2342 # 0: path
2343 compiler.err.no.zipfs.for.archive=\
2344     No file system provider is available to handle this file: {0}
2345 
2346 compiler.warn.div.zero=\
2347     division by zero
2348 
2349 compiler.warn.empty.if=\
2350     empty statement after if
2351 
2352 # 0: type, 1: name
2353 compiler.warn.annotation.method.not.found=\
2354     Cannot find annotation method ''{1}()'' in type ''{0}''
2355 
2356 # 0: type, 1: name, 2: message segment
2357 compiler.warn.annotation.method.not.found.reason=\
2358     Cannot find annotation method ''{1}()'' in type ''{0}'': {2}
2359 
2360 # 0: list of annotation, 1: symbol, 2: name, 3: message segment
2361 compiler.err.cant.attach.type.annotations=\
2362     Cannot attach type annotations {0} to {1}.{2}:\n\
2363     {3}
2364 
2365 # 0: file object, 1: symbol, 2: name
2366 compiler.warn.unknown.enum.constant=\
2367     unknown enum constant {1}.{2}
2368 
2369 # 0: file object, 1: symbol, 2: name, 3: message segment
2370 compiler.warn.unknown.enum.constant.reason=\
2371     unknown enum constant {1}.{2}\n\
2372     reason: {3}
2373 
2374 # 0: type, 1: type
2375 compiler.warn.raw.class.use=\
2376     found raw type: {0}\n\
2377     missing type arguments for generic class {1}
2378 
2379 compiler.warn.diamond.redundant.args=\
2380     Redundant type arguments in new expression (use diamond operator instead).
2381 
2382 compiler.warn.local.redundant.type=\
2383     Redundant type for local variable (replace explicit type with ''var'').
2384 
2385 compiler.warn.potential.lambda.found=\
2386     This anonymous inner class creation can be turned into a lambda expression.
2387 
2388 compiler.warn.method.redundant.typeargs=\
2389     Redundant type arguments in method call.
2390 
2391 # 0: symbol, 1: message segment
2392 compiler.warn.varargs.redundant.trustme.anno=\
2393     Redundant {0} annotation. {1}
2394 
2395 # 0: symbol
2396 compiler.warn.access.to.member.from.serializable.element=\
2397     access to member {0} from serializable element can be publicly accessible to untrusted code
2398 
2399 # 0: symbol
2400 compiler.warn.access.to.member.from.serializable.lambda=\
2401     access to member {0} from serializable lambda can be publicly accessible to untrusted code
2402 
2403 #####
2404 
2405 ## The following are tokens which are non-terminals in the language. They should
2406 ## be named as JLS3 calls them when translated to the appropriate language.
2407 compiler.misc.token.identifier=\
2408     <identifier>
2409 
2410 compiler.misc.token.character=\
2411     <character>
2412 
2413 compiler.misc.token.string=\
2414     <string>
2415 
2416 compiler.misc.token.integer=\
2417     <integer>
2418 
2419 compiler.misc.token.long-integer=\
2420     <long integer>
2421 
2422 compiler.misc.token.float=\
2423     <float>
2424 
2425 compiler.misc.token.double=\
2426     <double>
2427 
2428 compiler.misc.token.bad-symbol=\
2429     <bad symbol>
2430 
2431 compiler.misc.token.end-of-input=\
2432     <end of input>
2433 
2434 ## The argument to the following string will always be one of the following:
2435 ## 1. one of the above non-terminals
2436 ## 2. a keyword (JLS1.8)
2437 ## 3. a boolean literal (JLS3.10.3)
2438 ## 4. the null literal (JLS3.10.7)
2439 ## 5. a Java separator (JLS3.11)
2440 ## 6. an operator (JLS3.12)
2441 ##
2442 ## This is the only place these tokens will be used.
2443 # 0: token
2444 compiler.err.expected=\
2445     {0} expected
2446 
2447 # 0: string
2448 compiler.err.expected.str=\
2449     {0} expected
2450 
2451 # 0: token, 1: token
2452 compiler.err.expected2=\
2453     {0} or {1} expected
2454 
2455 # 0: token, 1: token, 2: token
2456 compiler.err.expected3=\
2457     {0}, {1}, or {2} expected
2458 
2459 # 0: token, 1: token, 2: token, 3: string
2460 compiler.err.expected4=\
2461     {0}, {1}, {2}, or {3} expected
2462 
2463 compiler.err.premature.eof=\
2464     reached end of file while parsing
2465 
2466 compiler.err.enum.constant.expected=\
2467     enum constant expected here
2468 
2469 compiler.err.enum.constant.not.expected=\
2470     enum constant not expected here
2471 
2472 compiler.err.extraneous.semicolon=\
2473     extraneous semicolon
2474 
2475 compiler.warn.extraneous.semicolon=\
2476     extraneous semicolon
2477 
2478 ## The following are related in form, but do not easily fit the above paradigm.
2479 compiler.err.expected.module.or.open=\
2480     ''module'' or ''open'' expected
2481 
2482 compiler.err.dot.class.expected=\
2483     ''.class'' expected
2484 
2485 ## The argument to this string will always be either 'case' or 'default'.
2486 # 0: token
2487 compiler.err.orphaned=\
2488     orphaned {0}
2489 
2490 # 0: name
2491 compiler.misc.anonymous.class=\
2492     <anonymous {0}>
2493 
2494 # 0: name, 1: type
2495 compiler.misc.type.captureof=\
2496     capture#{0} of {1}
2497 
2498 compiler.misc.type.captureof.1=\
2499     capture#{0}
2500 
2501 compiler.misc.type.none=\
2502     <none>
2503 
2504 compiler.misc.unnamed.package=\
2505     unnamed package
2506 
2507 compiler.misc.unnamed.module=\
2508     unnamed module
2509 
2510 #####
2511 
2512 # 0: symbol, 1: message segment
2513 compiler.err.cant.access=\
2514     cannot access {0}\n\
2515     {1}
2516 
2517 # 0: name
2518 compiler.misc.bad.class.file=\
2519     class file is invalid for class {0}
2520 
2521 # 0: file name, 1: string (expected constant pool entry type), 2: number (constant pool index)
2522 compiler.misc.bad.const.pool.entry=\
2523     bad constant pool entry in {0}\n\
2524     expected {1} at index {2}
2525 
2526 # 0: file name, 1: number (constant pool index), 2: number (constant pool size)
2527 compiler.misc.bad.const.pool.index=\
2528     bad constant pool index in {0}\n\
2529     index {1} is not within pool size {2}.
2530 
2531 # 0: file name, 1: message segment
2532 compiler.misc.bad.class.file.header=\
2533     bad class file: {0}\n\
2534     {1}\n\
2535     Please remove or make sure it appears in the correct subdirectory of the classpath.
2536 
2537 # 0: file name, 1: message segment
2538 compiler.misc.bad.source.file.header=\
2539     bad source file: {0}\n\
2540     {1}\n\
2541     Please remove or make sure it appears in the correct subdirectory of the sourcepath.
2542 
2543 ## The following are all possible strings for the second argument ({1}) of the
2544 ## above strings.
2545 compiler.misc.bad.class.signature=\
2546     bad class signature: {0}
2547 
2548 #0: symbol, 1: symbol
2549 compiler.misc.bad.enclosing.class=\
2550     bad enclosing class for {0}: {1}
2551 
2552 # 0: symbol
2553 compiler.misc.bad.enclosing.method=\
2554     bad enclosing method attribute for class {0}
2555 
2556 # 0: file name
2557 compiler.warn.runtime.visible.invisible.param.annotations.mismatch=\
2558     the length of parameters in RuntimeVisibleParameterAnnotations attribute and \
2559     RuntimeInvisibleParameterAnnotations attribute in: {0} \
2560     do not match, ignoring both attributes
2561 
2562 # 0: file name
2563 compiler.warn.runtime.invisible.parameter.annotations=\
2564     the RuntimeVisibleParameterAnnotations and RuntimeInvisibleParameterAnnotations attributes \
2565     in: {0} \
2566     cannot be mapped to the method''s parameters
2567 
2568 compiler.misc.bad.const.pool.tag=\
2569     bad constant pool tag: {0}
2570 
2571 compiler.misc.bad.const.pool.tag.at=\
2572     bad constant pool tag: {0} at {1}
2573 
2574 # 0: number
2575 compiler.misc.bad.utf8.byte.sequence.at=\
2576     bad UTF-8 byte sequence at {0}
2577 
2578 compiler.misc.unexpected.const.pool.tag.at=\
2579     unexpected constant pool tag: {0} at {1}
2580 
2581 # 0: number
2582 compiler.misc.bad.class.truncated.at.offset=\
2583     class file truncated at offset {0}
2584 
2585 compiler.misc.bad.signature=\
2586     bad signature: {0}
2587 
2588 compiler.misc.bad.type.annotation.value=\
2589     bad type annotation target type value: {0}
2590 
2591 compiler.misc.bad.module-info.name=\
2592     bad class name
2593 
2594 compiler.misc.class.file.wrong.class=\
2595     class file contains wrong class: {0}
2596 
2597 compiler.misc.module.info.invalid.super.class=\
2598     module-info with invalid super class
2599 
2600 # 0: name
2601 compiler.misc.class.file.not.found=\
2602     class file for {0} not found
2603 
2604 # 0: string (constant value), 1: symbol (constant field), 2: type (field type)
2605 compiler.misc.bad.constant.range=\
2606     constant value ''{0}'' for {1} is outside the expected range for {2}
2607 
2608 # 0: string (constant value), 1: symbol (constant field), 2: string (expected class)
2609 compiler.misc.bad.constant.value=\
2610     bad constant value ''{0}'' for {1}, expected {2}
2611 
2612 # 0: type (field type)
2613 compiler.misc.bad.constant.value.type=\
2614     variable of type ''{0}'' cannot have a constant value, but has one specified
2615 
2616 # 0: string (classfile major version), 1: string (classfile minor version)
2617 compiler.misc.invalid.default.interface=\
2618     default method found in version {0}.{1} classfile
2619 
2620 # 0: string (classfile major version), 1: string (classfile minor version)
2621 compiler.misc.invalid.static.interface=\
2622     static method found in version {0}.{1} classfile
2623 
2624 # 0: string (classfile major version), 1: string (classfile minor version)
2625 compiler.misc.anachronistic.module.info=\
2626     module declaration found in version {0}.{1} classfile
2627 
2628 compiler.misc.module.info.definition.expected=\
2629     module-info definition expected
2630 
2631 # 0: name
2632 compiler.misc.file.doesnt.contain.class=\
2633     file does not contain class {0}
2634 
2635 # 0: symbol
2636 compiler.misc.file.does.not.contain.package=\
2637     file does not contain package {0}
2638 
2639 compiler.misc.file.does.not.contain.module=\
2640     file does not contain module declaration
2641 
2642 compiler.misc.illegal.start.of.class.file=\
2643     illegal start of class file
2644 
2645 # 0: name
2646 compiler.misc.method.descriptor.invalid=\
2647     method descriptor invalid for {0}
2648 
2649 compiler.misc.unable.to.access.file=\
2650     unable to access file: {0}
2651 
2652 compiler.misc.unicode.str.not.supported=\
2653     unicode string in class file not supported
2654 
2655 compiler.misc.undecl.type.var=\
2656     undeclared type variable: {0}
2657 
2658 compiler.misc.malformed.vararg.method=\
2659     class file contains malformed variable arity method: {0}
2660 
2661 compiler.misc.wrong.version=\
2662     class file has wrong version {0}.{1}, should be {2}.{3}
2663 
2664 compiler.misc.illegal.flag.combo=\
2665     class file contains illegal flag combination {0} for {1} {2}
2666 
2667 #####
2668 
2669 # 0: type, 1: type or symbol
2670 compiler.err.not.within.bounds=\
2671     type argument {0} is not within bounds of type-variable {1}
2672 
2673 ## The following are all possible strings for the second argument ({1}) of the
2674 ## above string.
2675 
2676 ## none yet...
2677 
2678 #####
2679 
2680 # 0: message segment
2681 compiler.err.prob.found.req=\
2682     incompatible types: {0}
2683 
2684 # 0: message segment
2685 compiler.misc.prob.found.req=\
2686     incompatible types: {0}
2687 
2688 # 0: message segment, 1: type, 2: type
2689 compiler.warn.prob.found.req=\
2690     {0}\n\
2691     required: {2}\n\
2692     found:    {1}
2693 
2694 # 0: type, 1: type
2695 compiler.misc.inconvertible.types=\
2696     {0} cannot be converted to {1}
2697 
2698 # 0: type, 1: type
2699 compiler.misc.possible.loss.of.precision=\
2700     possible lossy conversion from {0} to {1}
2701 
2702 # 0: type, 1: type
2703 compiler.warn.possible.loss.of.precision=\
2704     implicit cast from {0} to {1} in compound assignment is possibly lossy
2705 
2706 compiler.misc.unchecked.assign=\
2707     unchecked conversion
2708 
2709 # compiler.misc.storecheck=\
2710 #     assignment might cause later store checks to fail
2711 # compiler.misc.unchecked=\
2712 #     assigned array cannot dynamically check its stores
2713 compiler.misc.unchecked.cast.to.type=\
2714     unchecked cast
2715 
2716 # compiler.err.star.expected=\
2717 #     ''*'' expected
2718 # compiler.err.no.elem.type=\
2719 #     \[\*\] cannot have a type
2720 
2721 # 0: message segment
2722 compiler.misc.try.not.applicable.to.type=\
2723     try-with-resources not applicable to variable type\n\
2724     ({0})
2725 
2726 #####
2727 
2728 # 0: object, 1: message segment
2729 compiler.err.type.found.req=\
2730     unexpected type\n\
2731     required: {1}\n\
2732     found:    {0}
2733 
2734 ## The following are all possible strings for the first argument ({0}) of the
2735 ## above string.
2736 compiler.misc.type.req.class=\
2737     class
2738 
2739 compiler.misc.type.req.class.array=\
2740     class or array
2741 
2742 compiler.misc.type.req.array.or.iterable=\
2743     array or java.lang.Iterable
2744 
2745 compiler.misc.type.req.ref=\
2746     reference
2747 
2748 compiler.misc.type.req.exact=\
2749     class or interface without bounds
2750 
2751 compiler.misc.type.req.identity=\
2752     a type with identity
2753 
2754 # 0: type
2755 compiler.misc.type.parameter=\
2756     type parameter {0}
2757 
2758 #####
2759 
2760 ## The following are all possible strings for the last argument of all those
2761 ## diagnostics whose key ends in ".1"
2762 
2763 # 0: type, 1: list of type
2764 compiler.misc.no.unique.maximal.instance.exists=\
2765     no unique maximal instance exists for type variable {0} with upper bounds {1}
2766 
2767 # 0: type, 1: list of type
2768 compiler.misc.no.unique.minimal.instance.exists=\
2769     no unique minimal instance exists for type variable {0} with lower bounds {1}
2770 
2771 # 0: type, 1: list of type
2772 compiler.misc.incompatible.upper.bounds=\
2773     inference variable {0} has incompatible upper bounds {1}
2774 
2775 # 0: type, 1: list of type
2776 compiler.misc.incompatible.eq.bounds=\
2777     inference variable {0} has incompatible equality constraints {1}
2778 
2779 # 0: type, 1: fragment, 2: fragment
2780 compiler.misc.incompatible.bounds=\
2781     inference variable {0} has incompatible bounds\n\
2782     {1}\n\
2783     {2}
2784 
2785 # 0: list of type
2786 compiler.misc.lower.bounds=\
2787         lower bounds: {0}
2788 
2789 # 0: list of type
2790 compiler.misc.eq.bounds=\
2791         equality constraints: {0}
2792 
2793 # 0: list of type
2794 compiler.misc.upper.bounds=\
2795         upper bounds: {0}
2796 
2797 # 0: list of type, 1: type, 2: type
2798 compiler.misc.infer.no.conforming.instance.exists=\
2799     no instance(s) of type variable(s) {0} exist so that {1} conforms to {2}
2800 
2801 # 0: list of type, 1: message segment
2802 compiler.misc.infer.no.conforming.assignment.exists=\
2803     cannot infer type-variable(s) {0}\n\
2804     (argument mismatch; {1})
2805 
2806 # 0: list of type
2807 compiler.misc.infer.arg.length.mismatch=\
2808     cannot infer type-variable(s) {0}\n\
2809     (actual and formal argument lists differ in length)
2810 
2811 # 0: list of type, 1: message segment
2812 compiler.misc.infer.varargs.argument.mismatch=\
2813     cannot infer type-variable(s) {0}\n\
2814     (varargs mismatch; {1})
2815 
2816 # 0: type, 1: list of type
2817 compiler.misc.inferred.do.not.conform.to.upper.bounds=\
2818     inferred type does not conform to upper bound(s)\n\
2819     inferred: {0}\n\
2820     upper bound(s): {1}
2821 
2822 # 0: type, 1: list of type
2823 compiler.misc.inferred.do.not.conform.to.lower.bounds=\
2824     inferred type does not conform to lower bound(s)\n\
2825     inferred: {0}\n\
2826     lower bound(s): {1}
2827 
2828 # 0: type, 1: list of type
2829 compiler.misc.inferred.do.not.conform.to.eq.bounds=\
2830     inferred type does not conform to equality constraint(s)\n\
2831     inferred: {0}\n\
2832     equality constraints(s): {1}
2833 
2834 # 0: symbol
2835 compiler.misc.diamond=\
2836     {0}<>
2837 
2838 # 0: type
2839 compiler.misc.diamond.non.generic=\
2840     cannot use ''<>'' with non-generic class {0}
2841 
2842 # 0: list of type, 1: message segment
2843 compiler.misc.diamond.invalid.arg=\
2844     type argument {0} inferred for {1} is not allowed in this context\n\
2845     inferred argument is not expressible in the Signature attribute
2846 
2847 # 0: list of type, 1: message segment
2848 compiler.misc.diamond.invalid.args=\
2849     type arguments {0} inferred for {1} are not allowed in this context\n\
2850     inferred arguments are not expressible in the Signature attribute
2851 
2852 # 0: type
2853 compiler.misc.diamond.and.explicit.params=\
2854     cannot use ''<>'' with explicit type parameters for constructor
2855 
2856 compiler.misc.mref.infer.and.explicit.params=\
2857     cannot use raw constructor reference with explicit type parameters for constructor
2858 
2859 # 0: type, 1: list of type
2860 compiler.misc.explicit.param.do.not.conform.to.bounds=\
2861     explicit type argument {0} does not conform to declared bound(s) {1}
2862 
2863 compiler.misc.arg.length.mismatch=\
2864     actual and formal argument lists differ in length
2865 
2866 # 0: string
2867 compiler.misc.wrong.number.type.args=\
2868     wrong number of type arguments; required {0}
2869 
2870 # 0: message segment
2871 compiler.misc.no.conforming.assignment.exists=\
2872     argument mismatch; {0}
2873 
2874 # 0: message segment
2875 compiler.misc.varargs.argument.mismatch=\
2876     varargs mismatch; {0}
2877 
2878 #####
2879 
2880 # 0: symbol or type, 1: file name
2881 compiler.warn.auxiliary.class.accessed.from.outside.of.its.source.file=\
2882     auxiliary class {0} in {1} should not be accessed from outside its own source file
2883 
2884 ## The first argument ({0}) is a "kindname".
2885 # 0: kind name, 1: symbol, 2: symbol
2886 compiler.err.abstract.cant.be.accessed.directly=\
2887     abstract {0} {1} in {2} cannot be accessed directly
2888 
2889 ## The first argument ({0}) is a "kindname".
2890 # 0: symbol kind, 1: symbol
2891 compiler.err.non-static.cant.be.ref=\
2892     non-static {0} {1} cannot be referenced from a static context
2893 
2894 # 0: symbol kind, 1: symbol
2895 compiler.misc.bad.static.method.in.unbound.lookup=\
2896     unexpected static {0} {1} found in unbound lookup
2897 
2898 # 0: symbol kind, 1: symbol
2899 compiler.misc.bad.instance.method.in.unbound.lookup=\
2900     unexpected instance {0} {1} found in unbound lookup
2901 
2902 # 0: symbol kind, 1: symbol
2903 compiler.misc.bad.static.method.in.bound.lookup=\
2904     unexpected static {0} {1} found in bound lookup
2905 
2906 ## Both arguments ({0}, {1}) are "kindname"s.  {0} is a comma-separated list
2907 ## of kindnames (the list should be identical to that provided in source.
2908 # 0: set of kind name, 1: set of kind name
2909 compiler.err.unexpected.type=\
2910     unexpected type\n\
2911     required: {0}\n\
2912     found:    {1}
2913 
2914 compiler.err.unexpected.lambda=\
2915    lambda expression not expected here
2916 
2917 compiler.err.unexpected.mref=\
2918    method reference not expected here
2919 
2920 ## The first argument {0} is a "kindname" (e.g. 'constructor', 'field', etc.)
2921 ## The second argument {1} is the non-resolved symbol
2922 ## The third argument {2} is a list of type parameters (non-empty if {1} is a method)
2923 ## The fourth argument {3} is a list of argument types (non-empty if {1} is a method)
2924 # 0: kind name, 1: name, 2: unused, 3: unused
2925 compiler.err.cant.resolve=\
2926     cannot find symbol\n\
2927     symbol: {0} {1}
2928 
2929 # 0: kind name, 1: name, 2: unused, 3: list of type
2930 compiler.err.cant.resolve.args=\
2931     cannot find symbol\n\
2932     symbol: {0} {1}({3})
2933 
2934 # 0: kind name, 1: name, 2: unused, 3: list of type
2935 compiler.misc.cant.resolve.args=\
2936     cannot find symbol\n\
2937     symbol: {0} {1}({3})
2938 
2939 # 0: kind name, 1: name, 2: list of type, 3: list of type
2940 compiler.err.cant.resolve.args.params=\
2941     cannot find symbol\n\
2942     symbol: {0} <{2}>{1}({3})
2943 
2944 ## arguments from {0} to {3} have the same meaning as above
2945 ## The fifth argument {4} is a location subdiagnostic (see below)
2946 # 0: kind name, 1: name, 2: unused, 3: unused, 4: message segment
2947 compiler.err.cant.resolve.location=\
2948     cannot find symbol\n\
2949     symbol:   {0} {1}\n\
2950     location: {4}
2951 
2952 # 0: kind name, 1: name, 2: unused, 3: list of type, 4: message segment
2953 compiler.err.cant.resolve.location.args=\
2954     cannot find symbol\n\
2955     symbol:   {0} {1}({3})\n\
2956     location: {4}
2957 
2958 # 0: kind name, 1: name, 2: list of type, 3: list, 4: message segment
2959 compiler.err.cant.resolve.location.args.params=\
2960     cannot find symbol\n\
2961     symbol:   {0} <{2}>{1}({3})\n\
2962     location: {4}
2963 
2964 ### Following are replicated/used for method reference diagnostics
2965 
2966 # 0: kind name, 1: name, 2: unused, 3: list of type, 4: message segment
2967 compiler.misc.cant.resolve.location.args=\
2968     cannot find symbol\n\
2969     symbol:   {0} {1}({3})\n\
2970     location: {4}
2971 
2972 # 0: kind name, 1: name, 2: list of type, 3: list, 4: message segment
2973 compiler.misc.cant.resolve.location.args.params=\
2974     cannot find symbol\n\
2975     symbol:   {0} <{2}>{1}({3})\n\
2976     location: {4}
2977 
2978 ##a location subdiagnostic is composed as follows:
2979 ## The first argument {0} is the location "kindname" (e.g. 'constructor', 'field', etc.)
2980 ## The second argument {1} is the location name
2981 ## The third argument {2} is the location type (only when {1} is a variable name)
2982 
2983 # 0: kind name, 1: type or symbol, 2: unused
2984 compiler.misc.location=\
2985     {0} {1}
2986 
2987 # 0: kind name, 1: symbol, 2: type
2988 compiler.misc.location.1=\
2989     {0} {1} of type {2}
2990 
2991 ## The following are all possible string for "kindname".
2992 ## They should be called whatever the JLS calls them after it been translated
2993 ## to the appropriate language.
2994 # compiler.misc.kindname.constructor=\
2995 #     static member
2996 compiler.misc.kindname.annotation=\
2997     @interface
2998 
2999 compiler.misc.kindname.constructor=\
3000     constructor
3001 
3002 compiler.misc.kindname.enum=\
3003     enum
3004 
3005 compiler.misc.kindname.interface=\
3006     interface
3007 
3008 compiler.misc.kindname.static=\
3009     static
3010 
3011 compiler.misc.kindname.type.variable=\
3012     type variable
3013 
3014 compiler.misc.kindname.type.variable.bound=\
3015     bound of type variable
3016 
3017 compiler.misc.kindname.variable=\
3018     variable
3019 
3020 compiler.misc.kindname.value=\
3021     value
3022 
3023 compiler.misc.kindname.method=\
3024     method
3025 
3026 compiler.misc.kindname.class=\
3027     class
3028 
3029 compiler.misc.kindname.package=\
3030     package
3031 
3032 compiler.misc.kindname.module=\
3033     module
3034 
3035 compiler.misc.kindname.static.init=\
3036     static initializer
3037 
3038 compiler.misc.kindname.instance.init=\
3039     instance initializer
3040 
3041 compiler.misc.kindname.record.component=\
3042     record component
3043 
3044 compiler.misc.kindname.record=\
3045     record
3046 
3047 #####
3048 
3049 compiler.misc.no.args=\
3050     no arguments
3051 
3052 # 0: message segment
3053 compiler.err.override.static=\
3054     {0}\n\
3055     overriding method is static
3056 
3057 # 0: message segment, 1: set of flag
3058 compiler.err.override.meth=\
3059     {0}\n\
3060     overridden method is {1}
3061 
3062 # 0: message segment, 1: type
3063 compiler.err.override.meth.doesnt.throw=\
3064     {0}\n\
3065     overridden method does not throw {1}
3066 
3067 # In the following string {1} is a space separated list of Java Keywords, as
3068 # they would have been declared in the source code
3069 # 0: message segment, 1: set of flag or string
3070 compiler.err.override.weaker.access=\
3071     {0}\n\
3072     attempting to assign weaker access privileges; was {1}
3073 
3074 # 0: message segment, 1: type, 2: type
3075 compiler.err.override.incompatible.ret=\
3076     {0}\n\
3077     return type {1} is not compatible with {2}
3078 
3079 # 0: message segment, 1: type, 2: type
3080 compiler.warn.override.unchecked.ret=\
3081     {0}\n\
3082     return type requires unchecked conversion from {1} to {2}
3083 
3084 # 0: message segment, 1: type
3085 compiler.warn.override.unchecked.thrown=\
3086     {0}\n\
3087     overridden method does not throw {1}
3088 
3089 # 0: symbol
3090 compiler.warn.override.equals.but.not.hashcode=\
3091     Class {0} overrides equals, but neither it nor any superclass overrides hashCode method
3092 
3093 ## The following are all possible strings for the first argument ({0}) of the
3094 ## above strings.
3095 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3096 compiler.misc.cant.override=\
3097     {0} in {1} cannot override {2} in {3}
3098 
3099 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3100 compiler.misc.cant.hide=\
3101     {0} in {1} cannot hide {2} in {3}
3102 
3103 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3104 compiler.misc.cant.implement=\
3105     {0} in {1} cannot implement {2} in {3}
3106 
3107 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3108 compiler.misc.clashes.with=\
3109     {0} in {1} clashes with {2} in {3}
3110 
3111 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3112 compiler.misc.unchecked.override=\
3113     {0} in {1} overrides {2} in {3}
3114 
3115 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3116 compiler.misc.unchecked.implement=\
3117     {0} in {1} implements {2} in {3}
3118 
3119 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3120 compiler.misc.unchecked.clash.with=\
3121     {0} in {1} overrides {2} in {3}
3122 
3123 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3124 compiler.misc.varargs.override=\
3125     {0} in {1} overrides {2} in {3}
3126 
3127 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3128 compiler.misc.varargs.implement=\
3129     {0} in {1} implements {2} in {3}
3130 
3131 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
3132 compiler.misc.varargs.clash.with=\
3133     {0} in {1} overrides {2} in {3}
3134 
3135 # 0: kind name, 1: symbol, 2: symbol, 3: message segment
3136 compiler.misc.inapplicable.method=\
3137     {0} {1}.{2} is not applicable\n\
3138     ({3})
3139 
3140 ########################################
3141 # Diagnostics for language feature changes.
3142 # Such diagnostics have a common template which can be customized by using a feature
3143 # diagnostic fragment (one of those given below).
3144 ########################################
3145 
3146 # 0: message segment (feature), 1: string (found version), 2: string (expected version)
3147 compiler.err.feature.not.supported.in.source=\
3148    {0} is not supported in -source {1}\n\
3149     (use -source {2} or higher to enable {0})
3150 
3151 # 0: message segment (feature), 1: string (found version), 2: string (expected version)
3152 compiler.err.feature.not.supported.in.source.plural=\
3153    {0} are not supported in -source {1}\n\
3154     (use -source {2} or higher to enable {0})
3155 
3156 # 0: message segment (feature), 1: string (found version), 2: string (expected version)
3157 compiler.misc.feature.not.supported.in.source=\
3158    {0} is not supported in -source {1}\n\
3159     (use -source {2} or higher to enable {0})
3160 
3161 # 0: message segment (feature), 1: string (found version), 2: string (expected version)
3162 compiler.misc.feature.not.supported.in.source.plural=\
3163    {0} are not supported in -source {1}\n\
3164     (use -source {2} or higher to enable {0})
3165 
3166 # 0: message segment (feature)
3167 compiler.err.preview.feature.disabled=\
3168    {0} is a preview feature and is disabled by default.\n\
3169    (use --enable-preview to enable {0})
3170 
3171 # 0: message segment (feature)
3172 compiler.err.preview.feature.disabled.plural=\
3173    {0} are a preview feature and are disabled by default.\n\
3174    (use --enable-preview to enable {0})
3175 
3176 # 0: file object (classfile), 1: string (expected version)
3177 compiler.err.preview.feature.disabled.classfile=\
3178    class file for {0} uses preview features of Java SE {1}.\n\
3179    (use --enable-preview to allow loading of class files which contain preview features)
3180 
3181 # 0: message segment (feature)
3182 compiler.warn.preview.feature.use=\
3183    {0} is a preview feature and may be removed in a future release.
3184 
3185 # 0: message segment (feature)
3186 compiler.warn.preview.feature.use.plural=\
3187    {0} are a preview feature and may be removed in a future release.
3188 
3189 # 0: file object (classfile), 1: string (expected version)
3190 compiler.warn.preview.feature.use.classfile=\
3191    class file for {0} uses preview features of Java SE {1}.
3192 
3193 compiler.misc.feature.modules=\
3194     modules
3195 
3196 compiler.misc.feature.diamond.and.anon.class=\
3197     ''<>'' with anonymous inner classes
3198 
3199 compiler.misc.feature.var.in.try.with.resources=\
3200     variables in try-with-resources
3201 
3202 compiler.misc.feature.private.intf.methods=\
3203     private interface methods
3204 
3205 compiler.misc.feature.text.blocks=\
3206     text blocks
3207 
3208 compiler.misc.feature.multiple.case.labels=\
3209     multiple case labels
3210 
3211 compiler.misc.feature.switch.rules=\
3212     switch rules
3213 
3214 compiler.misc.feature.switch.expressions=\
3215     switch expressions
3216 
3217 compiler.misc.feature.var.syntax.in.implicit.lambda=\
3218     var syntax in implicit lambdas
3219 
3220 compiler.misc.feature.pattern.matching.instanceof=\
3221     pattern matching in instanceof
3222 
3223 compiler.misc.feature.reifiable.types.instanceof=\
3224     reifiable types in instanceof
3225 
3226 compiler.misc.feature.deconstruction.patterns=\
3227     deconstruction patterns
3228 
3229 compiler.misc.feature.unnamed.variables=\
3230     unnamed variables
3231 
3232 compiler.misc.feature.primitive.patterns=\
3233     primitive patterns
3234 
3235 compiler.misc.feature.records=\
3236     records
3237 
3238 compiler.misc.feature.sealed.classes=\
3239     sealed classes
3240 
3241 compiler.misc.feature.case.null=\
3242     null in switch cases
3243 
3244 compiler.misc.feature.pattern.switch=\
3245     patterns in switch statements
3246 
3247 compiler.misc.feature.unconditional.patterns.in.instanceof=\
3248     unconditional patterns in instanceof
3249 
3250 compiler.misc.feature.implicit.classes=\
3251     implicitly declared classes
3252 
3253 compiler.misc.feature.flexible.constructors=\
3254     flexible constructors
3255 
3256 compiler.misc.feature.module.imports=\
3257     module imports
3258 
3259 compiler.warn.underscore.as.identifier=\
3260     as of release 9, ''_'' is a keyword, and may not be used as an identifier
3261 
3262 compiler.err.underscore.as.identifier=\
3263     as of release 9, ''_'' is a keyword, and may not be used as an identifier
3264 
3265 compiler.err.use.of.underscore.not.allowed=\
3266     underscore not allowed here\n\
3267     as of release 9, ''_'' is a keyword, and may not be used as an identifier\n\
3268     as of release 22, ''_'' can be used as a name in the declaration of unnamed patterns, local variables, exception parameters or lambda parameters
3269 
3270 compiler.err.use.of.underscore.not.allowed.non.variable=\
3271     underscore not allowed here
3272 
3273 compiler.err.use.of.underscore.not.allowed.with.brackets=\
3274     the underscore keyword ''_'' is not allowed to be followed by brackets
3275 
3276 compiler.err.enum.as.identifier=\
3277     as of release 5, ''enum'' is a keyword, and may not be used as an identifier
3278 
3279 compiler.err.assert.as.identifier=\
3280     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier
3281 
3282 # TODO 308: make a better error message
3283 compiler.err.this.as.identifier=\
3284     as of release 8, ''this'' is allowed as the parameter name for the receiver type only\n\
3285     which has to be the first parameter, and cannot be a lambda parameter
3286 
3287 compiler.err.receiver.parameter.not.applicable.constructor.toplevel.class=\
3288     receiver parameter not applicable for constructor of top-level class
3289 
3290 # 0: fragment, 1: symbol, 2: annotated-type
3291 compiler.err.type.annotation.inadmissible=\
3292     {0} not expected here\n\
3293     (to annotate a qualified type, write {1}.{2})
3294 
3295 # 0: annotation
3296 compiler.misc.type.annotation.1=\
3297     type annotation {0} is
3298 
3299 # 0: list of annotation
3300 compiler.misc.type.annotation=\
3301     type annotations {0} are
3302 
3303 # 0: type, 1: type
3304 compiler.err.incorrect.receiver.name=\
3305     the receiver name does not match the enclosing class type\n\
3306     required: {0}\n\
3307     found:    {1}
3308 
3309 # 0: type, 1: type
3310 compiler.err.incorrect.receiver.type=\
3311     the receiver type does not match the enclosing class type\n\
3312     required: {0}\n\
3313     found:    {1}
3314 
3315 # 0: type, 1: type
3316 compiler.err.incorrect.constructor.receiver.type=\
3317     the receiver type does not match the enclosing outer class type\n\
3318     required: {0}\n\
3319     found:    {1}
3320 
3321 # 0: type, 1: type
3322 compiler.err.incorrect.constructor.receiver.name=\
3323     the receiver name does not match the enclosing outer class type\n\
3324     required: {0}\n\
3325     found:    {1}
3326 
3327 compiler.err.no.annotations.on.dot.class=\
3328     no annotations are allowed in the type of a class literal
3329 
3330 ########################################
3331 # Diagnostics for verbose resolution
3332 # used by Resolve (debug only)
3333 ########################################
3334 
3335 # 0: number, 1: symbol, 2: unused
3336 compiler.misc.applicable.method.found=\
3337     #{0} applicable method found: {1}
3338 
3339 # 0: number, 1: symbol, 2: message segment
3340 compiler.misc.applicable.method.found.1=\
3341     #{0} applicable method found: {1}\n\
3342     ({2})
3343 
3344 # 0: number, 1: symbol, 2: message segment
3345 compiler.misc.not.applicable.method.found=\
3346     #{0} not applicable method found: {1}\n\
3347     ({2})
3348 
3349 # 0: type
3350 compiler.misc.partial.inst.sig=\
3351     partially instantiated to: {0}
3352 
3353 # 0: name, 1: symbol, 2: number, 3: string (method resolution phase), 4: list of type or message segment, 5: list of type or message segment
3354 compiler.note.verbose.resolve.multi=\
3355     resolving method {0} in type {1} to candidate {2}\n\
3356     phase: {3}\n\
3357     with actuals: {4}\n\
3358     with type-args: {5}\n\
3359     candidates:
3360 
3361 # 0: name, 1: symbol, 2: unused, 3: string (method resolution phase), 4: list of type or message segment, 5: list of type or message segment
3362 compiler.note.verbose.resolve.multi.1=\
3363     erroneous resolution for method {0} in type {1}\n\
3364     phase: {3}\n\
3365     with actuals: {4}\n\
3366     with type-args: {5}\n\
3367     candidates:
3368 
3369 # 0: symbol, 1: type, 2: type
3370 compiler.note.deferred.method.inst=\
3371     Deferred instantiation of method {0}\n\
3372     instantiated signature: {1}\n\
3373     target-type: {2}
3374 
3375 ########################################
3376 # Diagnostics for lambda deduplication
3377 # used by LambdaToMethod (debug only)
3378 ########################################
3379 
3380 # 0: symbol
3381 compiler.note.verbose.l2m.deduplicate=\
3382     deduplicating lambda implementation method {0}
3383 
3384 ########################################
3385 # Diagnostics for method reference search
3386 # results used by Resolve (debug only)
3387 ########################################
3388 
3389 # 0: fragment, 1: string, 2: number
3390 compiler.note.method.ref.search.results.multi=\
3391     {0} search results for {1}, with most specific {2}\n\
3392     applicable candidates:
3393 
3394 # 0: number, 1: fragment, 2: symbol
3395 compiler.misc.applicable.method.found.2=\
3396     #{0} applicable method found: {1} {2}
3397 
3398 # 0: number, 1: fragment, 2: symbol, 3: message segment
3399 compiler.misc.applicable.method.found.3=\
3400     #{0} applicable method found: {1} {2}\n\
3401     ({3})
3402 
3403 compiler.misc.static=\
3404     static
3405 
3406 compiler.misc.non.static=\
3407     non-static
3408 
3409 compiler.misc.bound=\
3410     bound
3411 
3412 compiler.misc.unbound=\
3413     unbound
3414 
3415 ########################################
3416 # Diagnostics for where clause implementation
3417 # used by the RichDiagnosticFormatter.
3418 ########################################
3419 
3420 compiler.misc.type.null=\
3421     <null>
3422 
3423 # X#n (where n is an int id) is disambiguated tvar name
3424 # 0: name, 1: number
3425 compiler.misc.type.var=\
3426     {0}#{1}
3427 
3428 # CAP#n (where n is an int id) is an abbreviation for 'captured type'
3429 # 0: number
3430 compiler.misc.captured.type=\
3431     CAP#{0}
3432 
3433 # <INT#n> (where n is an int id) is an abbreviation for 'intersection type'
3434 # 0: number
3435 compiler.misc.intersection.type=\
3436     INT#{0}
3437 
3438 # where clause for captured type: contains upper ('extends {1}') and lower
3439 # ('super {2}') bound along with the wildcard that generated this captured type ({3})
3440 # 0: type, 1: type, 2: type, 3: type
3441 compiler.misc.where.captured=\
3442     {0} extends {1} super: {2} from capture of {3}
3443 
3444 # compact where clause for captured type: contains upper ('extends {1}') along
3445 # with the wildcard that generated this captured type ({3})
3446 # 0: type, 1: type, 2: unused, 3: type
3447 compiler.misc.where.captured.1=\
3448     {0} extends {1} from capture of {3}
3449 
3450 # where clause for type variable: contains upper bound(s) ('extends {1}') along with
3451 # the kindname ({2}) and location ({3}) in which the typevar has been declared
3452 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
3453 compiler.misc.where.typevar=\
3454     {0} extends {1} declared in {2} {3}
3455 
3456 # compact where clause for type variable: contains the kindname ({2}) and location ({3})
3457 # in which the typevar has been declared
3458 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
3459 compiler.misc.where.typevar.1=\
3460     {0} declared in {2} {3}
3461 
3462 # where clause for fresh type variable: contains upper bound(s) ('extends {1}').
3463 # Since a fresh type-variable is synthetic - there's no location/kindname here.
3464 # 0: type, 1: list of type
3465 compiler.misc.where.fresh.typevar=\
3466     {0} extends {1}
3467 
3468 # where clause for type variable: contains all the upper bound(s) ('extends {1}')
3469 # of this intersection type
3470 # 0: type, 1: list of type
3471 compiler.misc.where.intersection=\
3472     {0} extends {1}
3473 
3474 ### Where clause headers ###
3475 compiler.misc.where.description.captured=\
3476     where {0} is a fresh type-variable:
3477 
3478 # 0: set of type
3479 compiler.misc.where.description.typevar=\
3480     where {0} is a type-variable:
3481 
3482 # 0: set of type
3483 compiler.misc.where.description.intersection=\
3484     where {0} is an intersection type:
3485 
3486 # 0: set of type
3487 compiler.misc.where.description.captured.1=\
3488     where {0} are fresh type-variables:
3489 
3490 # 0: set of type
3491 compiler.misc.where.description.typevar.1=\
3492     where {0} are type-variables:
3493 
3494 # 0: set of type
3495 compiler.misc.where.description.intersection.1=\
3496     where {0} are intersection types:
3497 
3498 ###
3499 # errors related to doc comments
3500 
3501 compiler.err.dc.bad.entity=\
3502     bad HTML entity
3503 
3504 compiler.err.dc.bad.inline.tag=\
3505     incorrect use of inline tag
3506 
3507 compiler.err.dc.identifier.expected=\
3508     identifier expected
3509 
3510 compiler.err.dc.invalid.html=\
3511     invalid HTML
3512 
3513 compiler.err.dc.malformed.html=\
3514     malformed HTML
3515 
3516 compiler.err.dc.missing.semicolon=\
3517     semicolon missing
3518 
3519 compiler.err.dc.no.content=\
3520     no content
3521 
3522 compiler.err.dc.no.tag.name=\
3523     no tag name after ''@''
3524 
3525 compiler.err.dc.no.url=\
3526     no URL
3527 
3528 compiler.err.dc.no.title=\
3529     no title
3530 
3531 compiler.err.dc.gt.expected=\
3532     ''>'' expected
3533 
3534 compiler.err.dc.ref.bad.parens=\
3535     unexpected text after parenthesis
3536 
3537 compiler.err.dc.ref.syntax.error=\
3538     syntax error in reference
3539 
3540 compiler.err.dc.ref.unexpected.input=\
3541     unexpected text
3542 
3543 compiler.err.dc.unexpected.content=\
3544     unexpected content
3545 
3546 compiler.err.dc.unterminated.inline.tag=\
3547     unterminated inline tag
3548 
3549 compiler.err.dc.unterminated.signature=\
3550     unterminated signature
3551 
3552 compiler.err.dc.unterminated.string=\
3553     unterminated string
3554 
3555 compiler.err.dc.ref.annotations.not.allowed=\
3556     annotations not allowed
3557 
3558 ###
3559 # errors related to modules
3560 
3561 compiler.err.expected.module=\
3562     expected ''module''
3563 
3564 # 0: symbol
3565 compiler.err.module.not.found=\
3566     module not found: {0}
3567 
3568 # 0: symbol
3569 compiler.warn.module.not.found=\
3570     module not found: {0}
3571 
3572 # 0: name
3573 compiler.err.import.module.not.found=\
3574     imported module not found: {0}
3575 
3576 # 0: symbol
3577 compiler.err.import.module.does.not.read.unnamed=\
3578     unnamed module does not read: {0}
3579 
3580 # 0: symbol, 1: symbol
3581 compiler.err.import.module.does.not.read=\
3582     module {0} does not read: {1}
3583 
3584 compiler.err.too.many.modules=\
3585     too many module declarations found
3586 
3587 compiler.err.module.not.found.on.module.source.path=\
3588     module not found on module source path
3589 
3590 compiler.err.not.in.module.on.module.source.path=\
3591     not in a module on the module source path
3592 
3593 # 0: symbol
3594 compiler.err.duplicate.module=\
3595     duplicate module: {0}
3596 
3597 # 0: symbol
3598 compiler.err.duplicate.requires=\
3599     duplicate requires: {0}
3600 
3601 # 0: symbol
3602 compiler.err.conflicting.exports=\
3603     duplicate or conflicting exports: {0}
3604 
3605 # 0: symbol
3606 compiler.err.conflicting.opens=\
3607     duplicate or conflicting opens: {0}
3608 
3609 # 0: symbol
3610 compiler.err.conflicting.exports.to.module=\
3611     duplicate or conflicting exports to module: {0}
3612 
3613 # 0: symbol
3614 compiler.err.conflicting.opens.to.module=\
3615     duplicate or conflicting opens to module: {0}
3616 
3617 compiler.err.no.opens.unless.strong=\
3618     ''opens'' only allowed in strong modules
3619 
3620 # 0: symbol
3621 compiler.err.repeated.provides.for.service=\
3622     multiple ''provides'' for service {0}
3623 
3624 # 0: symbol, 1: symbol
3625 compiler.err.duplicate.provides=\
3626     duplicate provides: service {0}, implementation {1}
3627 
3628 # 0: symbol
3629 compiler.err.duplicate.uses=\
3630     duplicate uses: {0}
3631 
3632 # 0: symbol
3633 compiler.err.service.implementation.is.abstract=\
3634     the service implementation is an abstract class: {0}
3635 
3636 compiler.err.service.implementation.must.be.subtype.of.service.interface=\
3637     the service implementation type must be a subtype of the service interface type, or \
3638     have a public static no-args method named "provider" returning the service implementation
3639 
3640 compiler.err.service.implementation.provider.return.must.be.subtype.of.service.interface=\
3641     the "provider" method return type must be a subtype of the service interface type
3642 
3643 # 0: symbol
3644 compiler.err.service.implementation.is.inner=\
3645     the service implementation is an inner class: {0}
3646 
3647 # 0: symbol
3648 compiler.err.service.definition.is.enum=\
3649     the service definition is an enum: {0}
3650 
3651 # 0: symbol
3652 compiler.err.service.implementation.doesnt.have.a.no.args.constructor=\
3653     the service implementation does not have a default constructor: {0}
3654 
3655 # 0: symbol
3656 compiler.err.service.implementation.no.args.constructor.not.public=\
3657     the no arguments constructor of the service implementation is not public: {0}
3658 
3659 # 0: symbol
3660 compiler.err.package.empty.or.not.found=\
3661     package is empty or does not exist: {0}
3662 
3663 # 0: symbol
3664 compiler.warn.package.empty.or.not.found=\
3665     package is empty or does not exist: {0}
3666 
3667 compiler.err.no.output.dir=\
3668     no class output directory specified
3669 
3670 compiler.err.unnamed.pkg.not.allowed.named.modules=\
3671     unnamed package is not allowed in named modules
3672 
3673 # 0: name, 1: name
3674 compiler.err.module.name.mismatch=\
3675     module name {0} does not match expected name {1}
3676 
3677 # 0: name, 1: name
3678 compiler.misc.module.name.mismatch=\
3679     module name {0} does not match expected name {1}
3680 
3681 # 0: name
3682 compiler.err.module.non.zero.opens=\
3683     open module {0} has non-zero opens_count
3684 
3685 # 0: name
3686 compiler.misc.module.non.zero.opens=\
3687     open module {0} has non-zero opens_count
3688 
3689 compiler.err.module.decl.sb.in.module-info.java=\
3690     module declarations should be in a file named module-info.java
3691 
3692 # 0: set of string
3693 compiler.err.too.many.patched.modules=\
3694     too many patched modules ({0}), use --module-source-path
3695 
3696 # 0: name, 1: name
3697 compiler.err.file.patched.and.msp=\
3698     file accessible from both --patch-module and --module-source-path, \
3699     but belongs to a different module on each path: {0}, {1}
3700 
3701 compiler.err.processorpath.no.processormodulepath=\
3702     illegal combination of -processorpath and --processor-module-path
3703 
3704 # 0: symbol
3705 compiler.err.package.in.other.module=\
3706     package exists in another module: {0}
3707 
3708 # 0: symbol, 1: name, 2: symbol, 3: symbol
3709 compiler.err.package.clash.from.requires=\
3710     module {0} reads package {1} from both {2} and {3}
3711 
3712 # 0: name, 1: symbol, 2: symbol
3713 compiler.err.package.clash.from.requires.in.unnamed=\
3714     the unnamed module reads package {0} from both {1} and {2}
3715 
3716 # 0: string
3717 compiler.err.module.not.found.in.module.source.path=\
3718     module {0} not found in module source path
3719 
3720 compiler.err.output.dir.must.be.specified.with.dash.m.option=\
3721     class output directory must be specified if -m option is used
3722 
3723 compiler.err.modulesourcepath.must.be.specified.with.dash.m.option=\
3724     module source path must be specified if -m option is used
3725 
3726 # 0: symbol
3727 compiler.err.service.implementation.not.in.right.module=\
3728     service implementation must be defined in the same module as the provides directive
3729 
3730 # 0: symbol
3731 compiler.err.cyclic.requires=\
3732     cyclic dependence involving {0}
3733 
3734 # 0: fragment, 1: name
3735 compiler.err.duplicate.module.on.path=\
3736     duplicate module on {0}\nmodule in {1}
3737 
3738 # 0: option name, 1: string
3739 compiler.warn.bad.name.for.option=\
3740     bad name in value for {0} option: ''{1}''
3741 
3742 # 0: option name, 1: string
3743 compiler.err.bad.name.for.option=\
3744     bad name in value for {0} option: ''{1}''
3745 
3746 # 0: option name, 1: symbol
3747 compiler.warn.module.for.option.not.found=\
3748     module name in {0} option not found: {1}
3749 
3750 compiler.err.addmods.all.module.path.invalid=\
3751     --add-modules ALL-MODULE-PATH can only be used when compiling the unnamed module or \
3752     when compiling in the context of an automatic module
3753 
3754 # 0: symbol
3755 compiler.err.add.exports.with.release=\
3756     exporting a package from system module {0} is not allowed with --release
3757 
3758 # 0: symbol
3759 compiler.err.add.reads.with.release=\
3760     adding read edges for system module {0} is not allowed with --release
3761 
3762 compiler.warn.addopens.ignored=\
3763     --add-opens has no effect at compile time
3764 
3765 compiler.misc.locn.module_source_path=\
3766     module source path
3767 
3768 compiler.misc.locn.upgrade_module_path=\
3769     upgrade module path
3770 
3771 compiler.misc.locn.system_modules=\
3772     system modules
3773 
3774 compiler.misc.locn.module_path=\
3775     application module path
3776 
3777 compiler.misc.cant.resolve.modules=\
3778     cannot resolve modules
3779 
3780 compiler.misc.bad.requires.flag=\
3781     bad requires flag: {0}
3782 
3783 compiler.misc.bad.access.flags=\
3784     bad access flags combination: {0}
3785 
3786 # 0: string
3787 compiler.err.invalid.module.specifier=\
3788     module specifier not allowed: {0}
3789 
3790 # 0: symbol
3791 compiler.warn.service.provided.but.not.exported.or.used=\
3792     service interface provided but not exported or used
3793 
3794 # 0: kind name, 1: symbol, 2: symbol
3795 compiler.warn.leaks.not.accessible=\
3796     {0} {1} in module {2} is not accessible to clients that require this module
3797 # 0: kind name, 1: symbol, 2: symbol
3798 compiler.warn.leaks.not.accessible.unexported=\
3799     {0} {1} in module {2} is not exported
3800 # 0: kind name, 1: symbol, 2: symbol
3801 compiler.warn.leaks.not.accessible.not.required.transitive=\
3802     {0} {1} in module {2} is not indirectly exported using ''requires transitive''
3803 # 0: kind name, 1: symbol, 2: symbol
3804 compiler.warn.leaks.not.accessible.unexported.qualified=\
3805     {0} {1} in module {2} may not be visible to all clients that require this module
3806 
3807 ###
3808 # errors related to options
3809 
3810 # 0: string, 1: string
3811 compiler.err.illegal.argument.for.option=\
3812     illegal argument for {0}: {1}
3813 
3814 compiler.err.match.binding.exists=\
3815     illegal attempt to redefine an existing match binding
3816 
3817 compiler.err.switch.case.unexpected.statement=\
3818     unexpected statement in case, expected is an expression, a block or a throw statement
3819 
3820 compiler.err.switch.mixing.case.types=\
3821     different case kinds used in the switch
3822 
3823 ###
3824 # errors related to sealed classes
3825 
3826 # permits clause
3827 # 0: fragment
3828 compiler.err.invalid.permits.clause=\
3829     invalid permits clause\n\
3830     ({0})
3831 
3832 # 0: string
3833 compiler.misc.class.is.not.sealed=\
3834     {0} must be sealed
3835 
3836 # 0: type
3837 compiler.misc.is.a.type.variable=\
3838     must not include type variables: {0}
3839 
3840 # 0: type
3841 compiler.misc.is.duplicated=\
3842     must not contain duplicates: {0}
3843 
3844 # 0: type
3845 compiler.misc.doesnt.extend.sealed=\
3846     subclass {0} must extend sealed class
3847 
3848 compiler.misc.must.not.be.same.class=\
3849     illegal self-reference in permits clause
3850 
3851 # 0: type
3852 compiler.misc.must.not.be.supertype=\
3853     illegal reference to supertype {0}
3854 
3855 # other sealed types related errors
3856 
3857 compiler.err.sealed.class.must.have.subclasses=\
3858     sealed class must have subclasses
3859 
3860 # errors in subclasses of sealed classes
3861 # 0: symbol
3862 compiler.err.cant.inherit.from.sealed=\
3863     class is not allowed to extend sealed class: {0} \
3864     (as it is not listed in its ''permits'' clause)
3865 
3866 # 0: symbol
3867 compiler.err.class.in.unnamed.module.cant.extend.sealed.in.diff.package=\
3868     class {0} in unnamed module cannot extend a sealed class in a different package
3869 
3870 # 0: symbol, 1: symbol
3871 compiler.err.class.in.module.cant.extend.sealed.in.diff.module=\
3872     class {0} in module {1} cannot extend a sealed class in a different module
3873 
3874 # 0: symbol
3875 compiler.err.non.sealed.with.no.sealed.supertype=\
3876     non-sealed modifier not allowed here\n\
3877     (class {0} does not have any sealed supertypes)
3878 
3879 compiler.err.non.sealed.sealed.or.final.expected=\
3880     sealed, non-sealed or final modifiers expected
3881 
3882 compiler.err.non.sealed.or.sealed.expected=\
3883     sealed or non-sealed modifiers expected
3884 
3885 compiler.err.sealed.or.non.sealed.local.classes.not.allowed=\
3886     sealed or non-sealed local classes are not allowed
3887 
3888 # 0: fragment
3889 compiler.err.local.classes.cant.extend.sealed=\
3890     {0} classes must not extend sealed classes\
3891 
3892 compiler.misc.anonymous=\
3893     anonymous
3894 
3895 compiler.misc.local=\
3896     local
3897 
3898 ###
3899 # errors related to records
3900 
3901 # record components
3902 compiler.err.record.cant.declare.field.modifiers=\
3903     record components cannot have modifiers
3904 
3905 # 0: symbol
3906 compiler.err.illegal.record.component.name=\
3907     illegal record component name {0}
3908 
3909 compiler.err.record.component.and.old.array.syntax=\
3910     legacy array notation not allowed on record components
3911 
3912 # accessor methods
3913 # 0: symbol, 1: fragment
3914 compiler.err.invalid.accessor.method.in.record=\
3915     invalid accessor method in record {0}\n\
3916     ({1})
3917 
3918 compiler.misc.method.must.be.public=\
3919     accessor method must be public
3920 
3921 # 0: symbol, 1: symbol
3922 compiler.misc.accessor.return.type.doesnt.match=\
3923     return type of accessor method {0} must match the type of record component {1}
3924 
3925 compiler.misc.accessor.method.cant.throw.exception=\
3926     throws clause not allowed for accessor method
3927 
3928 compiler.misc.accessor.method.must.not.be.generic=\
3929     accessor method must not be generic
3930 
3931 compiler.misc.accessor.method.must.not.be.static=\
3932     accessor method must not be static
3933 
3934 # canonical constructors
3935 # 0: fragment, 1: name, 2: fragment
3936 compiler.err.invalid.canonical.constructor.in.record=\
3937     invalid {0} constructor in record {1}\n\
3938     ({2})
3939 
3940 compiler.misc.canonical=\
3941     canonical
3942 
3943 compiler.misc.compact=\
3944     compact
3945 
3946 # 0: fragment
3947 compiler.misc.throws.clause.not.allowed.for.canonical.constructor=\
3948     throws clause not allowed for {0} constructor
3949 
3950 compiler.misc.canonical.with.name.mismatch=\
3951     invalid parameter names in canonical constructor
3952 
3953 compiler.misc.canonical.cant.have.return.statement=\
3954     compact constructor must not have return statements
3955 
3956 compiler.misc.canonical.must.not.declare.type.variables=\
3957     canonical constructor must not declare type variables
3958 
3959 compiler.misc.type.must.be.identical.to.corresponding.record.component.type=\
3960     type and arity must match that of the corresponding record component\
3961 
3962 compiler.misc.canonical.must.not.contain.explicit.constructor.invocation=\
3963     canonical constructor must not contain explicit constructor invocation
3964 
3965 # 0: set of flag or string
3966 compiler.misc.canonical.must.not.have.stronger.access=\
3967     attempting to assign stronger access privileges; was {0}
3968 
3969 # other
3970 compiler.err.record.cannot.declare.instance.fields=\
3971     field declaration must be static\n\
3972     (consider replacing field with record component)
3973 
3974 # 0: symbol
3975 compiler.err.invalid.supertype.record=\
3976     classes cannot directly extend {0}
3977 
3978 # 0: symbol
3979 compiler.err.non.canonical.constructor.invoke.another.constructor=\
3980     constructor is not canonical, so it must invoke another constructor of class {0}
3981 
3982 compiler.err.instance.initializer.not.allowed.in.records=\
3983     instance initializers not allowed in records
3984 
3985 compiler.err.static.declaration.not.allowed.in.inner.classes=\
3986     static declarations not allowed in inner classes
3987 
3988 compiler.err.record.patterns.annotations.not.allowed=\
3989     annotations not allowed on record patterns
3990 
3991 ############################################
3992 # messages previously at javac.properties
3993 
3994 compiler.err.empty.A.argument=\
3995     -A requires an argument; use ''-Akey'' or ''-Akey=value''
3996 
3997 # 0: string
3998 compiler.err.invalid.A.key=\
3999     key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
4000 
4001 # 0: string
4002 compiler.err.invalid.flag=\
4003     invalid flag: {0}
4004 
4005 compiler.err.profile.bootclasspath.conflict=\
4006     profile and bootclasspath options cannot be used together
4007 
4008 # 0: string
4009 compiler.err.invalid.profile=\
4010     invalid profile: {0}
4011 
4012 # 0: string
4013 compiler.err.invalid.target=\
4014     invalid target release: {0}
4015 
4016 # 0: option name, 1: target
4017 compiler.err.option.not.allowed.with.target=\
4018     option {0} not allowed with target {1}
4019 
4020 # 0: string
4021 compiler.err.option.too.many=\
4022     option {0} can only be specified once
4023 
4024 compiler.err.no.source.files=\
4025     no source files
4026 
4027 compiler.err.no.source.files.classes=\
4028     no source files or class names
4029 
4030 # 0: string
4031 compiler.err.req.arg=\
4032     {0} requires an argument
4033 
4034 # 0: string
4035 compiler.err.invalid.source=\
4036     invalid source release: {0}
4037 
4038 # 0: string, 1: string
4039 compiler.err.error.writing.file=\
4040     error writing {0}; {1}
4041 
4042 compiler.err.sourcepath.modulesourcepath.conflict=\
4043     cannot specify both --source-path and --module-source-path
4044 
4045 # 0: string, 1: string
4046 compiler.err.source.target.conflict=\
4047     specified target release {1} is too old for the specified source release {0}\n\
4048     --release {1} is recommended when compiling code to run on JDK {1}
4049 
4050 # 0: string, 1: string
4051 compiler.err.target.default.source.conflict=\
4052     specified target release {1} is too old for the default source release {0}\n\
4053     --release {1} is recommended when compiling code to run on JDK {1}
4054 
4055 # 0: profile, 1: target
4056 compiler.warn.profile.target.conflict=\
4057     profile {0} is not valid for target release {1}
4058 
4059 # 0: string
4060 compiler.err.file.not.directory=\
4061     not a directory: {0}
4062 
4063 # 0: object
4064 compiler.err.file.not.file=\
4065     not a file: {0}
4066 
4067 compiler.err.two.class.loaders.1=\
4068     javac is split between multiple class loaders: check your configuration
4069 
4070 # 0: url, 1: url
4071 compiler.err.two.class.loaders.2=\
4072     javac is split between multiple class loaders:\n\
4073     one class comes from file: {0}\n\
4074     while javac comes from {1}
4075 
4076 # 0: string, 1: string
4077 compiler.err.bad.value.for.option=\
4078     bad value for {0} option: ''{1}''
4079 
4080 # 0: string
4081 compiler.err.no.value.for.option=\
4082     no value for {0} option
4083 
4084 # 0: string
4085 compiler.err.repeated.value.for.patch.module=\
4086     --patch-module specified more than once for module {0}
4087 
4088 # 0: string
4089 compiler.err.repeated.value.for.module.source.path=\
4090     --module-source-path specified more than once for module {0}
4091 
4092 compiler.err.multiple.values.for.module.source.path=\
4093     --module-source-path specified more than once with a pattern argument
4094 
4095 # 0: string
4096 compiler.err.unmatched.quote=\
4097     unmatched quote in environment variable {0}
4098 
4099 # 0: option name
4100 compiler.err.release.bootclasspath.conflict=\
4101     option {0} cannot be used together with --release
4102 
4103 # 0: string
4104 compiler.err.unsupported.release.version=\
4105     release version {0} not supported
4106 
4107 # 0: string
4108 compiler.err.file.not.found=\
4109     file not found: {0}
4110 
4111 # 0: string, 1: source
4112 compiler.err.preview.not.latest=\
4113     invalid source release {0} with --enable-preview\n\
4114     (preview language features are only supported for release {1})
4115 
4116 compiler.err.preview.without.source.or.release=\
4117     --enable-preview must be used with either -source or --release
4118 
4119 compiler.misc.feature.value.classes=\
4120     value classes
4121 
4122 # 0: type, 1: type
4123 compiler.err.value.type.has.identity.super.type=\
4124     The identity type {1} cannot be a supertype of the value type {0}
4125 
4126 # 0: symbol, 1: type
4127 compiler.err.concrete.supertype.for.value.class=\
4128     The concrete class {1} is not allowed to be a super class of the value class {0} either directly or indirectly
4129 
4130 # 0: symbol, 1: symbol, 2: type
4131 compiler.err.super.class.method.cannot.be.synchronized=\
4132     The method {0} in the super class {2} of the value class {1} is synchronized. This is disallowed
4133 
4134 # 0: symbol or name
4135 compiler.err.cant.ref.after.ctor.called=\
4136     cannot assign to {0} after supertype constructor has been called
4137 
4138 compiler.err.non.abstract.value.class.cant.be.sealed.or.non.sealed=\
4139     ''sealed'' or ''non-sealed'' modifiers are only applicable to abstract value classes
4140 
4141 # 0: symbol
4142 compiler.err.deconstruction.pattern.only.records=\
4143     deconstruction patterns can only be applied to records, {0} is not a record
4144 
4145 compiler.err.deconstruction.pattern.var.not.allowed=\
4146     deconstruction patterns can only be applied to records, var is not allowed
4147 
4148 # 0: list of type, 1: list of type
4149 compiler.err.incorrect.number.of.nested.patterns=\
4150     incorrect number of nested patterns\n\
4151     required: {0}\n\
4152     found: {1}
4153 
4154 # 0: kind name, 1: symbol
4155 compiler.warn.declared.using.preview=\
4156     {0} {1} is declared using a preview feature, which may be removed in a future release.
4157 
4158 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4159     attempt to synchronize on an instance of a value-based class
4160 
4161 # 0: type
4162 compiler.err.enclosing.class.type.non.denotable=\
4163     enclosing class type: {0}\n\
4164     is non-denotable, try casting to a denotable type
4165 
4166 compiler.warn.value.finalize=\
4167     value classes should not have finalize methods, they are not invoked