Skip to content

Commit eb9e9b5

Browse files
committed
deploy: 0400b45
1 parent 769a3a9 commit eb9e9b5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

string-notation/de.joshuagleitze.stringnotation/-java-constant-name/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<div class="breadcrumbs"><a href="../../../index.html">string-notation</a><span class="delimiter">/</span><a href="../index.html">de.joshuagleitze.stringnotation</a><span class="delimiter">/</span><span class="current">JavaConstantName</span></div>
109109
<div class="cover ">
110110
<h1 class="cover"><span>Java</span><wbr></wbr><span>Constant</span><wbr></wbr><span><span>Name</span></span></h1>
111-
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">object </span><a href="index.html">JavaConstantName</a> : <a href="../-string-notation/index.html">StringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L83">source</a>)</span></span></div><p class="paragraph">A notation for <code class="lang-kotlin">static final</code> fields in Java. This notation is like <a href="../-screaming-snake-case/index.html">ScreamingSnakeCase</a>, but when <a href="../-string-notation/print.html">printing</a>, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
111+
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">data </span><span class="token keyword">object </span><a href="index.html">JavaConstantName</a> : <a href="../-string-notation/index.html">StringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L83">source</a>)</span></span></div><p class="paragraph">A notation for <code class="lang-kotlin">static final</code> fields in Java. This notation is like <a href="../-screaming-snake-case/index.html">ScreamingSnakeCase</a>, but when <a href="../-string-notation/print.html">printing</a>, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
112112
</div>
113113
<div class="tabbedcontent">
114114
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>

string-notation/de.joshuagleitze.stringnotation/-java-member-name/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<div class="breadcrumbs"><a href="../../../index.html">string-notation</a><span class="delimiter">/</span><a href="../index.html">de.joshuagleitze.stringnotation</a><span class="delimiter">/</span><span class="current">JavaMemberName</span></div>
109109
<div class="cover ">
110110
<h1 class="cover"><span>Java</span><wbr></wbr><span>Member</span><wbr></wbr><span><span>Name</span></span></h1>
111-
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaMemberName</a> : <a href="../-base-string-notation/index.html">BaseStringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L31">source</a>)</span></span></div><p class="paragraph">A notation for java member names. This notation is like <a href="../-lower-camel-case/index.html">LowerCamelCase</a>, but when <a href="../-string-notation/print.html">printing</a>, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
111+
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaMemberName</a> : <a href="../-base-string-notation/index.html">BaseStringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L31">source</a>)</span></span></div><p class="paragraph">A notation for java member names. This notation is like <a href="../-lower-camel-case/index.html">LowerCamelCase</a>, but when <a href="../-string-notation/print.html">printing</a>, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
112112
</div>
113113
<div class="tabbedcontent">
114114
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>

string-notation/de.joshuagleitze.stringnotation/-java-package-name/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<div class="breadcrumbs"><a href="../../../index.html">string-notation</a><span class="delimiter">/</span><a href="../index.html">de.joshuagleitze.stringnotation</a><span class="delimiter">/</span><span class="current">JavaPackageName</span></div>
109109
<div class="cover ">
110110
<h1 class="cover"><span>Java</span><wbr></wbr><span>Package</span><wbr></wbr><span><span>Name</span></span></h1>
111-
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaPackageName</a> : <a href="../-base-string-notation/index.html">BaseStringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L70">source</a>)</span></span></div><p class="paragraph">A notation for whole java packages. When <a href="../-string-notation/print.html">printing</a> parts, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
111+
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaPackageName</a> : <a href="../-base-string-notation/index.html">BaseStringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L70">source</a>)</span></span></div><p class="paragraph">A notation for whole java packages. When <a href="../-string-notation/print.html">printing</a> parts, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
112112
</div>
113113
<div class="tabbedcontent">
114114
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>

string-notation/de.joshuagleitze.stringnotation/-java-package-part/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<div class="breadcrumbs"><a href="../../../index.html">string-notation</a><span class="delimiter">/</span><a href="../index.html">de.joshuagleitze.stringnotation</a><span class="delimiter">/</span><span class="current">JavaPackagePart</span></div>
109109
<div class="cover ">
110110
<h1 class="cover"><span>Java</span><wbr></wbr><span>Package</span><wbr></wbr><span><span>Part</span></span></h1>
111-
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaPackagePart</a> : <a href="../-base-string-notation/index.html">BaseStringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L55">source</a>)</span></span></div><p class="paragraph">A notation for java package parts. When <a href="../-string-notation/print.html">printing</a>, it simply concatenates all word parts and drops any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it. When <a href="../-string-notation/parse.html">parsing</a>, the notation will recognise word parts both in the <a href="../-lower-camel-case/index.html">LowerCamelCase</a> and the <a href="../-snake-case/index.html">SnakeCase</a> notation. However, neither notation is conventional and parsing will usually yield only one word part on real-world inputs.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
111+
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaPackagePart</a> : <a href="../-base-string-notation/index.html">BaseStringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L55">source</a>)</span></span></div><p class="paragraph">A notation for java package parts. When <a href="../-string-notation/print.html">printing</a>, it simply concatenates all word parts and drops any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it. When <a href="../-string-notation/parse.html">parsing</a>, the notation will recognise word parts both in the <a href="../-lower-camel-case/index.html">LowerCamelCase</a> and the <a href="../-snake-case/index.html">SnakeCase</a> notation. However, neither notation is conventional and parsing will usually yield only one word part on real-world inputs.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
112112
</div>
113113
<div class="tabbedcontent">
114114
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>

string-notation/de.joshuagleitze.stringnotation/-java-type-name/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<div class="breadcrumbs"><a href="../../../index.html">string-notation</a><span class="delimiter">/</span><a href="../index.html">de.joshuagleitze.stringnotation</a><span class="delimiter">/</span><span class="current">JavaTypeName</span></div>
109109
<div class="cover ">
110110
<h1 class="cover"><span>Java</span><wbr></wbr><span>Type</span><wbr></wbr><span><span>Name</span></span></h1>
111-
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaTypeName</a> : <a href="../-string-notation/index.html">StringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L14">source</a>)</span></span></div><p class="paragraph">A notation for Java type names. This notation is like <a href="../-upper-camel-case/index.html">UpperCamelCase</a>, but when <a href="../-string-notation/print.html">printing</a>, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
111+
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":/main"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JavaTypeName</a> : <a href="../-string-notation/index.html">StringNotation</a><span class="source-link-wrapper"><span class="source-link" data-element-type="source-link">(<a href="https://github.com/jGleitz/string-notation/blob/main/src/main/kotlin/JavaNotations.kt#L14">source</a>)</span></span></div><p class="paragraph">A notation for Java type names. This notation is like <a href="../-upper-camel-case/index.html">UpperCamelCase</a>, but when <a href="../-string-notation/print.html">printing</a>, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, <code class="lang-kotlin">_</code> will be appended to it.</p><p class="paragraph">Allowed characters are determined using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierStart(kotlin.Char)">Character.isJavaIdentifierStart</a> and <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Character.html#isJavaIdentifierPart(kotlin.Char)">Character.isJavaIdentifierPart</a>. Keywords are detected using <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.compiler/javax/lang/model/SourceVersion.html#isKeyword(kotlin.CharSequence)">SourceVersion.isKeyword</a>.</p></div></div>
112112
</div>
113113
<div class="tabbedcontent">
114114
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="CONSTRUCTOR,TYPE,PROPERTY,FUNCTION">Members</button></div>

0 commit comments

Comments
 (0)