Git Product home page Git Product logo

Comments (4)

DanielBlik avatar DanielBlik commented on July 25, 2024 1

GOT IT !!!!

thanks a lot turns out while making a type error it gave an error and suggesting a state import which interfered
thank you so much your awesome :)

from yetanotherhueapi.

ZeroOne3010 avatar ZeroOne3010 commented on July 25, 2024

Please notice how your IDE is underlining some items in red. It is trying to help you. This means that you have a syntax error there. Consider the three lines of code you have, i.e. excluding the method definition and the curly brackets. On the first line you have a typo in the word builder ("buidler") and you haven't capitalized the the class name Color. On the second line it highlights the builder() method which leads me to think you have imported the wrong State. Finally, on the third line the method color(...) is highlighted because a Light does not have such a method. The correct way to do it would be this: room.setState(State.builder().color(java.awt.Color.PINK).on()); assuming the correct State has been imported from the same package as Hue.

from yetanotherhueapi.

DanielBlik avatar DanielBlik commented on July 25, 2024

ah sorry for the small mistakes like "buidler " stupid of me. But what do you mean by importing the right state have been googling that but cant seem to find anything related to "importing a state"

from yetanotherhueapi.

ZeroOne3010 avatar ZeroOne3010 commented on July 25, 2024

I mean that you should import the State class from this library and not some other State, so you should have this line: import io.github.zeroone3010.yahueapi.State;. Or, if you already have imported io.github.zeroone3010.yahueapi.*, then that should be enough. Just make sure you haven't imported any other class by the name of State, that's what I mean. So if you have anything like "import javax.swing.plaf.nimbus.State;" or "import sun.java2d.StateTrackable.State;", you should get rid of those.

from yetanotherhueapi.

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.