Skip to content

Commit 0b5fbdc

Browse files
authored
Cody756 master (eugenp#2740)
* Update README.md * Update README.md * Create README.md * Create README.md * Create README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.MD * Create README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.MD * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.MD * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Create README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Merge fix
1 parent c3a45d0 commit 0b5fbdc

16 files changed

Lines changed: 51 additions & 24 deletions

File tree

algorithms/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@
99
- [Example of Hill Climbing Algorithm](http://www.baeldung.com/java-hill-climbing-algorithm)
1010
- [Monte Carlo Tree Search for Tic-Tac-Toe Game](http://www.baeldung.com/java-monte-carlo-tree-search)
1111
- [String Search Algorithms for Large Texts](http://www.baeldung.com/java-full-text-search-algorithms)
12+
- [Test a Linked List for Cyclicity](http://www.baeldung.com/java-linked-list-cyclicity)
13+
- [Binary Search Algorithm in Java](http://www.baeldung.com/java-binary-search)
Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,19 @@
11
package com.baeldung.examples.asm.instrumentation;
22

33
import com.baeldung.examples.asm.CustomClassWriter;
4-
import java.lang.instrument.ClassFileTransformer;
5-
import java.lang.instrument.IllegalClassFormatException;
4+
65
import java.lang.instrument.Instrumentation;
7-
import java.security.ProtectionDomain;
86

9-
/**
10-
*
11-
* @author baeldung
12-
*/
137
public class Premain {
148

159
public static void premain(String agentArgs, Instrumentation inst) {
16-
inst.addTransformer(new ClassFileTransformer() {
17-
18-
@Override
19-
public byte[] transform(ClassLoader l, String name, Class c,
20-
ProtectionDomain d, byte[] b)
21-
throws IllegalClassFormatException {
10+
inst.addTransformer((l, name, c, d, b) -> {
2211

23-
if (name.equals("java/lang/Integer")) {
24-
CustomClassWriter cr = new CustomClassWriter(b);
25-
return cr.addField();
26-
}
27-
return b;
12+
if (name.equals("java/lang/Integer")) {
13+
CustomClassWriter cr = new CustomClassWriter(b);
14+
return cr.addField();
2815
}
16+
return b;
2917
});
3018
}
31-
3219
}

core-java-8/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
- [Finding Max/Min of a List or Collection](http://www.baeldung.com/java-collection-min-max)
2929
- [Java Base64 Encoding and Decoding](http://www.baeldung.com/java-base64-encode-and-decode)
3030
- [The Difference Between map() and flatMap()](http://www.baeldung.com/java-difference-map-and-flatmap)
31-
32-
- [Merging Streams in Java](http://www.baeldung.com/java-merge-streams)
31+
- [Merging Streams in Java](http://www.baeldung.com/java-merge-streams)
32+
- [“Stream has already been operated upon or closed” Exception in Java](http://www.baeldung.com/java-stream-operated-upon-or-closed-exception)

core-java-9/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@
1717
- [Java 9 Reactive Streams](http://www.baeldung.com/java-9-reactive-streams)
1818
- [How to Get All Dates Between Two Dates?](http://www.baeldung.com/java-between-dates)
1919
- [Java 9 java.util.Objects Additions](http://www.baeldung.com/java-9-objects-new)
20+
- [Compact Strings in Java 9](http://www.baeldung.com/java-9-compact-string)

core-java/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,12 @@
106106
- [Converting a List to String in Java](http://www.baeldung.com/java-list-to-string)
107107
- [CharSequence vs. String in Java](http://www.baeldung.com/java-char-sequence-string)
108108
- [Period and Duration in Java](http://www.baeldung.com/java-period-duration)
109-
- [Guide to the Diamond Operator in Java](http://www.baeldung.com/java-diamond-operator)
109+
- [Guide to the Diamond Operator in Java](http://www.baeldung.com/java-diamond-operator)
110+
- [Singletons in Java](http://www.baeldung.com/java-singleton)
111+
- [“Sneaky Throws” in Java](http://www.baeldung.com/java-sneaky-throws)
112+
- [OutOfMemoryError: GC Overhead Limit Exceeded](http://www.baeldung.com/java-gc-overhead-limit-exceeded)
113+
- [How to Iterate Over a Stream With Indices](http://www.baeldung.com/java-stream-indices)
114+
- [StringBuilder and StringBuffer in Java](http://www.baeldung.com/java-string-builder-string-buffer)
115+
- [Number of Digits in an Integer in Java](http://www.baeldung.com/java-number-of-digits-in-int)
116+
- [Proxy, Decorator, Adapter and Bridge Patterns](http://www.baeldung.com/java-structural-design-patterns)
117+

ejb/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
- [Guide to EJB Set-up](http://www.baeldung.com/ejb-intro)
44
- [Java EE Session Beans](http://www.baeldung.com/ejb-session-beans)
5+
- [Introduction to EJB JNDI Lookup on WildFly Application Server](http://www.baeldung.com/wildfly-ejb-jndi)

libraries/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,19 @@
3939
- [Introduction to Apache Commons CSV](http://www.baeldung.com/apache-commons-csv)
4040
- [Difference Between Two Dates in Java](http://www.baeldung.com/java-date-difference)
4141
- [Introduction to NoException](http://www.baeldung.com/no-exception)
42+
- [Introduction to FunctionalJava](http://www.baeldung.com/functional-java)
4243
- [Apache Commons IO](http://www.baeldung.com/apache-commons-io)
4344
- [Introduction to Conflict-Free Replicated Data Types](http://www.baeldung.com/java-conflict-free-replicated-data-types)
45+
- [Introduction to javax.measure](http://www.baeldung.com/javax-measure)
46+
- [Spring Yarg Integration](http://www.baeldung.com/spring-yarg)
47+
- [Delete a Directory Recursively in Java](http://www.baeldung.com/java-delete-directory)
48+
- [Guide to JDeferred](http://www.baeldung.com/jdeferred)
49+
- [Integrating Retrofit with RxJava](http://www.baeldung.com/retrofit-rxjava)
50+
- [Introduction to MBassador](http://www.baeldung.com/mbassador)
51+
- [Introduction to JCache](http://www.baeldung.com/jcache)
52+
- [Introduction to Retrofit](http://www.baeldung.com/retrofit)
53+
- [Using Pairs in Java](http://www.baeldung.com/java-pairs)
54+
- [Apache Commons Collections Bag](http://www.baeldung.com/apache-commons-bag)
4455

4556
The libraries module contains examples related to small libraries that are relatively easy to use and does not require any separate module of its own.
4657

mustache/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
### Relevant Articles:
2-
[Introduction to Mustache](http://www.baeldung.com/mustache)
2+
- [Introduction to Mustache](http://www.baeldung.com/mustache)
3+
- [Guide to Mustache with Spring Boot](http://www.baeldung.com/spring-boot-mustache)

rxjava/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,8 @@
33
- [Dealing with Backpressure with RxJava](http://www.baeldung.com/rxjava-backpressure)
44
- [How to Test RxJava?](http://www.baeldung.com/rxjava-testing)
55
- [Implementing Custom Operators in RxJava](http://www.baeldung.com/rxjava-custom-operators)
6+
- [Introduction to RxJava](http://www.baeldung.com/rx-java)
7+
- [RxJava and Error Handling](http://www.baeldung.com/rxjava-error-handling)
8+
- [Observable Utility Operators in RxJava](http://www.baeldung.com/rxjava-observable-operators)
9+
- [Introduction to rxjava-jdbc](http://www.baeldung.com/rxjava-jdbc)
10+
- [Schedulers in RxJava](http://www.baeldung.com/rxjava-schedulers)

spring-hibernate5/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
### Relevant articles
22

33
- [Guide to @Immutable Annotation in Hibernate](http://www.baeldung.com/hibernate-immutable)
4+
- [Hibernate Many to Many Annotation Tutorial](http://www.baeldung.com/hibernate-many-to-many)

0 commit comments

Comments
 (0)