* . *
  • About
  • Advertise
  • Privacy & Policy
  • Contact
Thursday, March 5, 2026
Earth-News
  • Home
  • Business
  • Entertainment

    Opening date set for Cosm entertainment venue at Centennial Yards – WALB

    Banijay, All3Media to merge entertainment businesses – WKZO

    Flutter Entertainment Projects Impressive 2025 Growth Driven by FanDuel and Global Expansion

    Han Jae-i Signs Exclusive Pact with Lead Entertainment – 조선일보

    Jennifer Garner’s kids left ‘mortified’ when friends parents play her hit movie at birthday parties – Fox News

    BIG 12 ANNOUNCES FAN EXPERIENCES, ENTERTAINMENT AND COMMUNITY PROGRAMMING FOR 2026 PHILLIPS 66 BIG 12 MEN’S AND WOMEN’S BASKETBALL TOURNAMENTS – Big 12 Conference

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    Brainhole Technology Elevates Portfolio with $1.3 Million Investment in Applied Optoelectronics

    Upway Accelerates Innovation with Exciting New Chief Technology Officer Appointment

    Hurry-Just Two Days Left to Register for the 2026 Phoenix Summit on March 5th! Discover How C-Level Tech Leaders Are Driving the Future of Innovation

    Nasdaq Officially Delists Graphjet Technology (GTI) After Market Value Decline

    Ostin Technology Shareholders Brace for Significant Losses

    DNB Asset Management Amplifies Seagate Technology Stake with $10.85 Million Investment

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
  • Home
  • Business
  • Entertainment

    Opening date set for Cosm entertainment venue at Centennial Yards – WALB

    Banijay, All3Media to merge entertainment businesses – WKZO

    Flutter Entertainment Projects Impressive 2025 Growth Driven by FanDuel and Global Expansion

    Han Jae-i Signs Exclusive Pact with Lead Entertainment – 조선일보

    Jennifer Garner’s kids left ‘mortified’ when friends parents play her hit movie at birthday parties – Fox News

    BIG 12 ANNOUNCES FAN EXPERIENCES, ENTERTAINMENT AND COMMUNITY PROGRAMMING FOR 2026 PHILLIPS 66 BIG 12 MEN’S AND WOMEN’S BASKETBALL TOURNAMENTS – Big 12 Conference

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    Brainhole Technology Elevates Portfolio with $1.3 Million Investment in Applied Optoelectronics

    Upway Accelerates Innovation with Exciting New Chief Technology Officer Appointment

    Hurry-Just Two Days Left to Register for the 2026 Phoenix Summit on March 5th! Discover How C-Level Tech Leaders Are Driving the Future of Innovation

    Nasdaq Officially Delists Graphjet Technology (GTI) After Market Value Decline

    Ostin Technology Shareholders Brace for Significant Losses

    DNB Asset Management Amplifies Seagate Technology Stake with $10.85 Million Investment

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
Earth-News
No Result
View All Result
Home Technology

Fluent: Static Extension Methods for Java

July 3, 2023
in Technology
Fluent: Static Extension Methods for Java
Share on FacebookShare on Twitter

Fluent allows you to call static Java methods as if they were object methods. For example, instead of writing:

assertNotEmpty(getHttpContent(createSharedUrl(website, “styles.css”)));

you would write:

website.createSharedUrl(“styles.css”).getHttpContent().assertNotEmpty();

Fluent works by transforming the abstract syntax tree during compilation. If a method can’t be resolved using Java’s normal rules, Fluent will rewrite it as such:

object.method(params…) -> method(object, params…)

and then give it back to the compiler. Now, the compiler will look for a static method taking the object as it’s first parameter. Any static methods that are in scope can be used. i.e, those you’ve written or imported. If you are importing them from another class, you will need to use import static so they can be resolved. No annotations are required.

In the above example, the extension method signatures would be:

public static URL createSharedUrl(Website website, String path) {}
public static String getHttpContent(URL url) {}
public static void assertNotEmpty(String string) {}

Extension methods are useful when you can’t (or don’t want to) add methods to a class or subclass, or you are working with an interface. Commonly, such methods are called “utility methods”, but in most other programming languages, you would just call them “functions”.

Fluent is implemented as a javac compiler plugin and has no runtime dependencies. The resulting class files are identical to code compiled with regular static method calls.

Fluent supports JDK 9 and above.

Quick Start

Download the jar, place it on your classpath, and run javac using -Xplugin:fluent:

wget https://github.com/rogerkeays/fluent/raw/main/fluent.jar
javac -cp fluent.jar -Xplugin:fluent File.java

Install Using Maven

Fluent is not yet available on Maven Central, however you can install it locally like this:

wget https://github.com/rogerkeays/fluent/raw/main/fluent.jar
mvn install:install-file -DgroupId=jamaica -DartifactId=fluent -Dversion=0.1.0 -Dpackaging=jar -Dfile=fluent.jar

Next, add the dependency to your pom.xml:

jamaica
fluent
0.1.0
compile

And configure the compiler plugin:

org.apache.maven.plugins
maven-compiler-plugin
3.11.0

-Xplugin:fluent

…

Note, older versions of the compiler plugin use a different syntax. Refer to the Maven Compiler Plugin docs for more details.

Build It Yourself

Fluent is built using a POSIX shell script:

git clone https://github.com/rogerkeays/fluent.git
cd fluent
./build.sh

If your operating system doesn’t include sh it shouldn’t be too hard to convert to whatever shell you are using. I mean, we’re talking about one java file and a text file here.

JDK Support

Fluent is tested with the following JDKs:

jdk-09.0.4
jdk-10.0.2
jdk-11.0.8
jdk-12.0.2
jdk-13.0.2
jdk-14.0.2
jdk-15.0.2
jdk-16.0.2
jdk-17.0.2
jdk-18.0.2.1
jdk-19.0.2
jdk-20.0.1
jdk-21 (early access)
jdk-22 (early access)

IDE Support

There is currently no IDE support for Fluent. Contributions are welcome. It may be possible to get your IDE to load the Fluent plugin into it’s compiler. If you get it working, please post something to github so we can all benefit.

Known Issues

you must use parentheses around numeric primitives when calling an extension method: e.g. (0).inc()
Fluent may not be compatible with other javac plugins, though so far it seems to play nice with Lombok, at least.
Fluent will make you a more productive programmer, which may go against corporate policy.

Related Resources

kotlin: a JVM language which supports extension methods out of the box.
Project Lombok: the grand-daddy of javac hacks.
unchecked: evade the checked exceptions mafia in Java.
Java Operator Overloading: a javac plugin using similar ideas.
racket-fluent: fluent syntax for Racket.
more stuff you never knew you wanted

>>> Read full article>>>
Copyright for syndicated content belongs to the linked Source : Hacker News – https://github.com/rogerkeays/fluent

Tags: FluentSTATICtechnology
Previous Post

Nvidia’s H100: Funny L2, and Tons of Bandwidth

Next Post

Tesla gives UK owners grabbing stick after forcing them to get left-hand-drive

Hoppers Tackles the Ecological Crisis with Wit and Humor

March 4, 2026

Community Unites to Save Lankenau Environmental Science High School

March 4, 2026

Discovering an Underwater World Bursting with Life: ASU Expedition Unveils Hidden Aquatic Wonders

March 4, 2026

How Two Years of Transforming My Body Helped Me Confront My Deepest Fear of Dying

March 4, 2026

Blackstone’s Gray: Market ‘noise’ fueled record redemptions from world’s largest private credit fund – CNBC

March 4, 2026

Beyond Oil: How Iran’s Economy Could Impact Your Wallet

March 4, 2026

Opening date set for Cosm entertainment venue at Centennial Yards – WALB

March 4, 2026

NCWorks and Novant Health Join Forces for an Exciting Hiring Event at Scotts Hill Medical Center

March 4, 2026

Tuesday primary results – news8000.com

March 4, 2026

Brainhole Technology Elevates Portfolio with $1.3 Million Investment in Applied Optoelectronics

March 4, 2026

Categories

Archives

March 2026
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031  
« Feb    
Earth-News.info

The Earth News is an independent English-language daily published Website from all around the World News

Browse by Category

  • Business (20,132)
  • Ecology (1,102)
  • Economy (1,120)
  • Entertainment (21,997)
  • General (20,228)
  • Health (10,159)
  • Lifestyle (1,135)
  • News (22,149)
  • People (1,125)
  • Politics (1,137)
  • Science (16,335)
  • Sports (21,622)
  • Technology (16,102)
  • World (1,112)

Recent News

Hoppers Tackles the Ecological Crisis with Wit and Humor

March 4, 2026

Community Unites to Save Lankenau Environmental Science High School

March 4, 2026
  • About
  • Advertise
  • Privacy & Policy
  • Contact

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

Go to mobile version