Code Monkey home page Code Monkey logo

Comments (5)

alicederyn avatar alicederyn commented on June 24, 2024

This is not currently supported. FWIW, I don't think this is the right ownership for this behaviour. The typeId to Type conversion belongs to the Type class; Vehicle should just store a Type object, and not expose its conversion functions. It's too tightly coupled.

from freebuilder.

stijnb1234 avatar stijnb1234 commented on June 24, 2024

Ah right, I see. And I have a List with a getter and a getter with a class parameter (generics) to get the parts with that class. Sadly I can't create getters with a parameter. How can I do that?

from freebuilder.

alicederyn avatar alicederyn commented on June 24, 2024

That's also not supported I'm afraid! I'm not sure how that would work tbh. How would the value depend on the type? Wouldn't it be the other way around? Perhaps you could paste a code snippet of how you would implement it by hand.

from freebuilder.

stijnb1234 avatar stijnb1234 commented on June 24, 2024

That's also not supported I'm afraid! I'm not sure how that would work tbh. How would the value depend on the type? Wouldn't it be the other way around? Perhaps you could paste a code snippet of how you would implement it by hand.

abstract class Part {}

class Wheel extends Part {}
class Seat extends Part {}

And then:

class Vehicle {
  List<Part> parts;

  public <V> V getPart(@NotNull Class<V> partClass) {
        return parts.stream().filter(partClass::isInstance).map(partClass::cast).findFirst().orElse(null);
  }
}

from freebuilder.

alicederyn avatar alicederyn commented on June 24, 2024

That's very bespoke, I can't imagine this being used enough to put into a code generator. It might be a use-case for issue #14 if that ever gets implemented.

from freebuilder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.