Skip to content

Commit e32a847

Browse files
authored
JAVA-41958 Moving some article links on Github - core-java-lang-operators (#18292)
1 parent d0a3b65 commit e32a847

File tree

20 files changed

+48
-7
lines changed

20 files changed

+48
-7
lines changed

core-java-modules/core-java-lang-operators-2/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ This module contains articles about Java operators
99
- [Getting a Bit at a Certain Position from Integral Values](https://www.baeldung.com/java-get-bit-at-position)
1010
- [Check if at Least Two Out of Three Booleans Are True in Java](https://www.baeldung.com/java-check-two-of-three-booleans)
1111
- [Alternatives for instanceof Operator in Java](https://www.baeldung.com/java-instanceof-alternatives)
12-
- [What Does “––>” Mean in Java?](https://www.baeldung.com/java-minus-minus-greaterthan)
1312
- [All the Ways Java Uses the Colon Character](https://www.baeldung.com/java-colon)
14-
- [Convert Infix to Postfix Expressions in Java](https://www.baeldung.com/java-convert-infix-to-postfix-expressions)
1513
- [Representation of Integers at a Bit Level in Java](https://www.baeldung.com/java-integer-bit-representation)
1614
- [How to Implement Elvis Operator in Java](https://www.baeldung.com/java-8-elvis-operator-implementation)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## Core Java Operators
2+
3+
This module contains articles about Java operators
4+
5+
## Relevant Articles:
6+
- [Guide to the Diamond Operator in Java](https://www.baeldung.com/java-diamond-operator)
7+
- [A Guide to Increment and Decrement Unary Operators in Java](https://www.baeldung.com/java-unary-operators)
8+
- [Java Compound Operators](https://www.baeldung.com/java-compound-operators)
9+
- [Bitwise & vs Logical && Operators](https://www.baeldung.com/java-bitwise-vs-logical-and)
10+
- [Finding an Object’s Class in Java](https://www.baeldung.com/java-finding-class)
11+
- [What Does “––>” Mean in Java?](https://www.baeldung.com/java-minus-minus-greaterthan)
12+
- [Convert Infix to Postfix Expressions in Java](https://www.baeldung.com/java-convert-infix-to-postfix-expressions)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>core-java-lang-operators-3</artifactId>
7+
<packaging>jar</packaging>
8+
<name>core-java-lang-operators-3</name>
9+
10+
<parent>
11+
<groupId>com.baeldung.core-java-modules</groupId>
12+
<artifactId>core-java-modules</artifactId>
13+
<version>0.0.1-SNAPSHOT</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>org.projectlombok</groupId>
19+
<artifactId>lombok</artifactId>
20+
<version>${lombok.version}</version>
21+
<scope>provided</scope>
22+
</dependency>
23+
</dependencies>
24+
25+
<build>
26+
<finalName>core-java-lang-operators-3</finalName>
27+
<resources>
28+
<resource>
29+
<directory>src/main/resources</directory>
30+
<filtering>true</filtering>
31+
</resource>
32+
</resources>
33+
</build>
34+
35+
</project>

core-java-modules/core-java-lang-operators/README.md

-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,8 @@
33
This module contains articles about Java operators
44

55
## Relevant Articles:
6-
- [Guide to the Diamond Operator in Java](https://www.baeldung.com/java-diamond-operator)
76
- [Ternary Operator in Java](https://www.baeldung.com/java-ternary-operator)
87
- [The Modulo Operator in Java](https://www.baeldung.com/modulo-java)
98
- [Java instanceof Operator](https://www.baeldung.com/java-instanceof)
10-
- [A Guide to Increment and Decrement Unary Operators in Java](https://www.baeldung.com/java-unary-operators)
11-
- [Java Compound Operators](https://www.baeldung.com/java-compound-operators)
129
- [The XOR Operator in Java](https://www.baeldung.com/java-xor-operator)
1310
- [Java Bitwise Operators](https://www.baeldung.com/java-bitwise-operators)
14-
- [Bitwise & vs Logical && Operators](https://www.baeldung.com/java-bitwise-vs-logical-and)
15-
- [Finding an Object’s Class in Java](https://www.baeldung.com/java-finding-class)

core-java-modules/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@
185185
<module>core-java-lang-oop-others</module>
186186
<module>core-java-lang-operators</module>
187187
<module>core-java-lang-operators-2</module>
188+
<module>core-java-lang-operators-3</module>
188189
<module>core-java-lang-syntax</module>
189190
<module>core-java-lang-syntax-2</module>
190191
<module>core-java-lang-syntax-3</module>

0 commit comments

Comments
 (0)